[jQuery] Re: question abotu validate plugin

2008-01-03 Thread Rick Faircloth
I just put a div above the input field with an id that identifies it as the error message target... The js validation code is set up like this: $("#contact-form").validate({ errorPlacement: function(error, element) { error.appendTo("#"

[jQuery] Re: jQuery.ScrollTo 1.3 released

2008-01-03 Thread Andy Matthews
Great job. I have only one more suggestion. Set the overflow property of div.pane to hidden. It'll get rid of the scrollbars on both target panes and make the demo look a little more polished. Having the scrollbars is nice because you can drag it back to the start, but with them gone it looks swe

[jQuery] question abotu validate plugin

2008-01-03 Thread bdee1
i am using the validate plugin (http://plugins.jquery.com/project/validate) on a contact form here: http://beta.asset-guardians.com/contact.cfm the only problem is that the error messages are being inserted to the right of the field. I would liek them to appear just above the field (below the f

[jQuery] Re: Debug Tools - Charles, DebugBar, Firebug Lite

2008-01-03 Thread Benjamin Sterling
lmao... I did not catch that; too funny! On 1/3/08, Rick Faircloth <[EMAIL PROTECTED]> wrote: > > > "Ream Men" just have to know... > > How does developing in FF increase you "reproductivity" ? > > :o) > > Rick > > > -Original Message- > > From: jquery-en@googlegroups.com [mailto:[EMAIL P

[jQuery] SITE: http://glassbooth.org/ - jQuery in the wild

2008-01-03 Thread Andy Matthews
This is a site that appears to help you match up to a US presidential candidate. It's got some nice interaction so checked under the hood and sure enough...it's using jQuery. Hoo-rah!

[jQuery] Re: Superfish feature request

2008-01-03 Thread Joel Birch
It just dawned on me that you probably were not referring to the Mac FF text mode shift caused by opacity changes. I see now that the menu item text shifts upward one pixel once the fadein animation has completed. When using the default font (Georgia or maybe Times on the computer I'm currently us

[jQuery] IE 6 Invalid Character Error When Thickbox is Opened

2008-01-03 Thread cfdvlpr
Has anyone else seen this error before in IE6? Line: 1 Char: 120 Error: Invalid Character Code: 0 When I open a thickbox I see there's an error in the lower left hand corner of the browser. Clicking that shows the error message above. What causes this error and how do you make it go away? T

[jQuery] Re: Debug Tools - Charles, DebugBar, Firebug Lite

2008-01-03 Thread Rick Faircloth
"Ream Men" just have to know... How does developing in FF increase you "reproductivity" ? :o) Rick > -Original Message- > From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of > Eridius > Sent: Thursday, January 03, 2008 6:58 PM > To: jquery-en@googlegroups.com > Sub

[jQuery] Re: How can I add HTML tag from jQuery?

2008-01-03 Thread Josh Nathanson
There's probably a better way, but you could do something like this: $("td.data").each(function() { var t = $(this).text(); $(this).html("" + t + ""); }); -- Josh - Original Message - From: "jQuery(new).to(me)" <[EMAIL PROTECTED]> To: "jQuery (English)" Sent: Thursday, Januar

[jQuery] Re: IE bug with ">" child selector for XML

2008-01-03 Thread Karl Rudd
Hmmm the '>' on it's own shouldn't select anything. Add '*' after it, e.g.: $('comments>comment:eq('+i+')>*',xml) That should select all child elements. Karl Rudd On Jan 4, 2008 8:28 AM, chrismarx <[EMAIL PROTECTED]> wrote: > > this one's odd. > this works: > > $('comments>comment:eq('+i+')

[jQuery] How can I add HTML tag from jQuery?

2008-01-03 Thread jQuery(new).to(me)
Hi, Please give me an idea how to do this: I want to add to a table cell. For example, If I have the following table; Data1Value 1 Data2Value 2 Now I want to add anchor to the "data" class, so that result would look like this: Data1Value 1 Data2Value 2 Now, with jQuery, all I can think o

[jQuery] Re: Debug Tools - Charles, DebugBar, Firebug Lite

2008-01-03 Thread timothytoe
It's silly to rail against "standards." Yes, we still have to support IE6. But IE8 is moving towards standards compliance and eventually that's what we'll be writing for. We know how this game works. New features show up in new browsers, but we can't use them for a few years until the new browsers

[jQuery] Re: Debug Tools - Charles, DebugBar, Firebug Lite

2008-01-03 Thread timothytoe
Who are the 1.6% of people using IE5? Do those people actually expect Web 2.0 sites to work?

[jQuery] Re: Debug Tools - Charles, DebugBar, Firebug Lite

2008-01-03 Thread McLars
Well, this whole topic is off-topic, since none of this is specifically about jQuery, just debugging in general. But I like to waste time as much as the next person. Too bad the flames didn't take. Larry On Jan 3, 3:14 pm, "Alexandre Plennevaux" <[EMAIL PROTECTED]> wrote: > To get back on topic,

[jQuery] Re: Debug Tools - Charles, DebugBar, Firebug Lite

2008-01-03 Thread Eridius
I would never in a million years choose to develop in IE first and then FF, there are just so many tools in FF that increases my reproductivity it would be slower for me to try to debug first in IE for the issue that FF would let me catch easier and faster. Andy Matthews-4 wrote: > > > Larry.

[jQuery] Re: Debug Tools - Charles, DebugBar, Firebug Lite

2008-01-03 Thread Jeffrey Kretz
I can understand that. But in my architecture, I build some basic classes and functions that sit at the bottom of my library and are used by ALL other implementations. My core library (which sits on top of jQuery) has about 50 core methods and every single one of those are tested, tweaked and te

[jQuery] Re: jQuery.ScrollTo 1.3 released

2008-01-03 Thread Alexandre Plennevaux
works fine on FF2.0.0.11 and IE7 On Jan 4, 2008 12:08 AM, Ariel Flesler <[EMAIL PROTECTED]> wrote: > > There, now it shows an example of code when a link is clicked. > I'd appreciate it, if some people could try it on different browser > versions and platforms. > > Thanks > > Ariel Flesler > > >

[jQuery] Re: Debug Tools - Charles, DebugBar, Firebug Lite

2008-01-03 Thread Jeffrey Kretz
You can install earlier versions of IE with this: http://tredosoft.com/Multiple_IE That's what I use. JK -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of cfdvlpr Sent: Thursday, January 03, 2008 3:08 PM To: jQuery (English) Subject: [jQuery] Re

[jQuery] Re: Debug Tools - Charles, DebugBar, Firebug Lite

2008-01-03 Thread McLars
Benjamin, I think (hope) we all test occasionally on all the browsers, while we're developing. But, frankly, I'm not going to test every single line, or block, or function, or whatever, on every browser. The reality is that I have one browser I write the bulk of my code with and all the others ar

[jQuery] Re: Debug Tools - Charles, DebugBar, Firebug Lite

2008-01-03 Thread timothytoe
There is a three-IE package, I believe, that runs multiple IEs under Wine in Linux. I know that a few people use that. --TT On Jan 3, 3:07 pm, cfdvlpr <[EMAIL PROTECTED]> wrote: > How do you test in both IE 6 and IE 7? Are you able to install both > these on the same machine or do you have mo

[jQuery] IE bug with ">" child selector for XML

2008-01-03 Thread chrismarx
this one's odd. this works: $('comments>comment:eq('+i+')',xml).each(function(){ responses[i][$(this).attr("NAME")] = $(this).text(); }); but this doesn't: $('comments>comment:eq('+i+')>',xml).each(function(){ responses[i][$(this).attr("NAME")] = $(this).text(); });

[jQuery] Re: Drop Shadow Plugin

2008-01-03 Thread McLars
Hannes, Actually, my apologies for not specifying the jQuery version. That was intentional, though, as the versions change so often and I doubt I will keep up. I should have said it was developed on version 1.2 and anything before or after that, you're on your own. My bad. I'm glad you like it.

[jQuery] jCarousel with FF 2.0.0.11

2008-01-03 Thread Avik
Hi, I'm facing issues while using jCarousel 0.22 with FF 2.0.0.11. Firebug is suggesting there is an error on line 813 of the jcarousel.jquery.js file. The code is as follows: this.clip[0].offsetWidth .. The error says the clip object is not available. This is within the clipping: function(

[jQuery] Adding xhtml+xml capabitlity to ajax load()

2008-01-03 Thread Max_B
Currently, the load() method uses the responseText from the ajax request and innerHTML. If the server send application/xhtml+xml content-type header the responseXML is returned by the ajax/get/post method but is not inserted into the DOM. One needs to manually add it in the callback with a code l

[jQuery] Re: Debug Tools - Charles, DebugBar, Firebug Lite

2008-01-03 Thread Alexandre Plennevaux
personally, i use VMWare and have a virtual windows XP installation for IE6 in 1024x768 resolution mode. The "standard" user. There is an opensource alternative to VMWare which i heard gets the job done: virtualBox: http://www.virtualbox.org/ HTH Alexandre

[jQuery] Re: jQuery.ScrollTo 1.3 released

2008-01-03 Thread Ariel Flesler
There, now it shows an example of code when a link is clicked. I'd appreciate it, if some people could try it on different browser versions and platforms. Thanks Ariel Flesler On 3 ene, 12:36, Ariel Flesler <[EMAIL PROTECTED]> wrote: > Ok, sounds good, I'll try to add that ASAP. > > Thanks! > >

[jQuery] Re: Superfish feature request - pixelshift/redraw bug

2008-01-03 Thread Joel Birch
Hi Jesse, I'm at work, but I did a search for an explanation of the Mac Firefox text flicker issue that I posted previously. Here it is: Mac Firefox has two text rendering anti-aliasing modes, one of which makes the text look much lighter or less bold in weight. The usual mode is used when every

[jQuery] Re: Debug Tools - Charles, DebugBar, Firebug Lite

2008-01-03 Thread cfdvlpr
How do you test in both IE 6 and IE 7? Are you able to install both these on the same machine or do you have more than one machine? We do most of our testing for IE 6 and IE 7 using browsercam. Unfortunately, there's no debugging tools on their machines. :( On Jan 3, 2:20 pm, "Jeffrey Kretz" <

[jQuery] Re: ui.datePicker and clone() issue

2008-01-03 Thread Alexandre Plennevaux
sure here is a sample page: http://www.pixeline.be/youplaboum/ui.html thanks for any insight ! Alexandre

[jQuery] Re: Cluetip delayed?

2008-01-03 Thread Brian Cherne
If you've still got a strange delay, try logging information to the console (like onClick, before ajax call, after ajax response, when elements are written to the page, etc). It would be helpful to see if the delay is in clueTip, in the ajax call (as you suspect it is already slow), or a jQuery css

[jQuery] Re: Bullet Proof: Help needed

2008-01-03 Thread Glen Lipka
Wow, I never thought of doing it this way. Very interesting. Recently, I saw this: http://www.netzgesta.de/corner/ Using "Canvas" it works in: Mozilla Firefox 1.5+, Opera 9+, Safari and IE6+ It might be worthwhile to create a jQuery version of this. It feels like the right approach. Glen On J

[jQuery] Re: Debug Tools - Charles, DebugBar, Firebug Lite

2008-01-03 Thread Jeffrey Kretz
As far as cross-platform compatibility, the two things that helped me the most were a) using jQuery as a library and b) Koch's site http://www.quirksmode.org/dom/compatibility.html for anything custom. But for me, it's no problem to test new applications in IE6, IE7, FF2, Opera and (ever since

[jQuery] Re: Debug Tools - Charles, DebugBar, Firebug Lite

2008-01-03 Thread Alexandre Plennevaux
To get back on topic, there is another free javascript debugger i mentioned here: http://www.pixeline.be/blog/2007/free-javascript-debugger-for-internet-explorer/ On Jan 3, 2008 10:54 PM, Andy Matthews <[EMAIL PROTECTED]> wrote: > > > That's what I do. But I focus on making it work in IE first.

[jQuery] Re: Superfish feature request

2008-01-03 Thread Joel Birch
One more thing I just thought of. Regarding finding a more robust solution for the width() and height() offsets, this value will always depend on the CSS the designer uses for the menu so I think the lesser evil here would be to add some "offset" options to the options object so you can pass in va

[jQuery] Re: Superfish feature request

2008-01-03 Thread Joel Birch
Oh, and the pixel-shift problem in FF is most likely the now fairly well documented opacity triggered text-mode quirk of that browser (on Mac at least). I wouldn't worry about that - it will always occur whenever any on-screen element's opacity switches between 1 and . or .01 and 0 - as it

[jQuery] Re: Superfish feature request

2008-01-03 Thread Joel Birch
Hi Jesse, Sorry I have been unresponsive - I've been too busy with work etc. which is unfortunate because I think what you have done here is fantastic. I wish I had more time now to discuss this new feature indepth but, alas, I have to race off to work again :/ Regarding the border redrawing, th

[jQuery] Re: Debug Tools - Charles, DebugBar, Firebug Lite

2008-01-03 Thread Andy Matthews
That's what I do. But I focus on making it work in IE first. Then I retrofit any minor changes needed for Firefox. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Benjamin Sterling Sent: Thursday, January 03, 2008 3:30 PM To: jquery-en@googlegroups.com Subject: [

[jQuery] Re: ui.datePicker and clone() issue

2008-01-03 Thread 1Marc
Could you provide a link to the code actually running? It is hard to debug code without having the entire context. Thanks. On Jan 2, 6:38 pm, Alexandre Plennevaux <[EMAIL PROTECTED]> wrote: > hi, > > In a form, I'm cloning a number of times a portion of html that > displays a sub form. Now, tha

[jQuery] Re: Debug Tools - Charles, DebugBar, Firebug Lite

2008-01-03 Thread Benjamin Sterling
Not trying to flame bait here, but I really don't see what so hard about dealing with ALL browsers at once. I hear all the time how hard it is to code for IE and, although I dot come across issues that I need to adjust for, I never feel that I can't do something with IE. I guess if you know the l

[jQuery] Re: Debug Tools - Charles, DebugBar, Firebug Lite

2008-01-03 Thread Andy Matthews
Larry... I'm RIGHT there with you. Better to develop in IE, then move forward into other browsers. Better than getting cool code working with a "fringe" browser, then finding out it doesn't work correctly in the primary browser. -Original Message- From: jquery-en@googlegroups.com [mail

[jQuery] Re: Drop Shadow Plugin

2008-01-03 Thread slooodge
Hi Larry, thanks for your quick respond! I have found the error - my jquery.js was to old I guess. I have downloaded teh files from your page and now it works beautifully! Thanks again for your beatiful plugin, Hannes On 3 Jan., 16:55, McLars <[EMAIL PROTECTED]> wrote: > Hannes, > > I'm sorr

[jQuery] Re: Cluetip delayed?

2008-01-03 Thread Shawn
I wish this page fit the normal ideals. I agree with everything you said. But in this particular instance, none of it will work. :) The page in question is more of a full application, than a simple data page. So the usual (and great) suggestions you have made are not quite applicable. I'

[jQuery] Re: Conditional events

2008-01-03 Thread LeonL
Thank you! Works great now :) Leon. Mika Tuupola wrote: > > > > On Dec 21, 2007, at 9:32 PM, LeonL wrote: > >> This will work fine - alert the edit var value. >> However, when adding 'event: "edit"' it wont do a thing: >> >> >> $(".item_title").editable("operator.php",{ >>

[jQuery] Re: Debug Tools - Charles, DebugBar, Firebug Lite

2008-01-03 Thread McLars
IEDeveloperToolbar is somewhat helpful, but kinda flaky. Honestly, though, 99% of the time I just use alert(). I have Firebug, but never use it since I develop on IE. As you said, that's what the vast majority of (and all of our intranet) users are on. I know that is contrary to how many develop,

[jQuery] Re: Debug Tools - Charles, DebugBar, Firebug Lite

2008-01-03 Thread [EMAIL PROTECTED]
I'm assuming you're at least using firebug lite so that you can hit F12 and see your console.log messages.

[jQuery] Re: Just can't seem to figure way...

2008-01-03 Thread [EMAIL PROTECTED]
Can you tell me were that problem you saw ius and how to fix? Shane On Dec 26 2007, 10:24 am, "胡争辉" <[EMAIL PROTECTED]> wrote: > Have you fixed your problem? > > 2007/12/22, [EMAIL PROTECTED] <[EMAIL PROTECTED]>: > > > > > > > > > Can someone look at this code.. for some reason the top expanable

[jQuery] Re: Thickbox Position is Too Low in IE 6

2008-01-03 Thread cfdvlpr
that fix did not work for me.

[jQuery] Re: thickbox on a link from an ajax call

2008-01-03 Thread Alexandre Plennevaux
-- Original Message -- To: jQuery (English) (jquery-en@googlegroups.com) From: Ali ([EMAIL PROTECTED]) Subject: [jQuery] thickbox on a link from an ajax call Date: 3/1/2008 16:41:46 Hey so basically heres the deal I have thickbox in index.cfm. Index.cfm does an ajax call that loa

[jQuery] Re: Replacing tags

2008-01-03 Thread Karl Swedberg
Hi there, As far as I know, any attempt to solve the XHTML validation issue with JavaScript is going to fail, because validation checkers look at the original source HTML before it has been modified by JavaScript. I realize that doesn't answer your question about changing the case of tag

[jQuery] Bullet Proof: Help needed

2008-01-03 Thread weepy
Hi I've been working on a (yet another) curved corners plugin. This one is slightly different though, because it uses a bullet (actually an inverse bullet) to achieve the coners. Using a bullet has several features * Super dooper fast. I tried adding 3600 corners and it did it in less than 2000

[jQuery] Re: Debug Tools - Charles, DebugBar, Firebug Lite

2008-01-03 Thread Jeffrey Kretz
There's a bit more overhead, but the free Visual Studio Web Express Edition has a very good debugger: http://www.microsoft.com/express/vwd/Default.aspx I use Firebug as well, but I feel that this is the best IE debugger available. JK _ From: jquery-en@googlegroups.com [mail

[jQuery] Re: Debug Tools - Charles, DebugBar, Firebug Lite

2008-01-03 Thread Benjamin Sterling
In IE I use a combination of DebugBar, IEDevelopemnt toolbar and Opera (IE and Opera use more or less that same javascript engine and Opera has a nice Error console). I also us the iLogger plugin[1] http://trac.asterisk2billing.org/cgi-bin/trac.cgi/browser/tags/1.3.1/A2BCustomer_UI/javascript/jqu

[jQuery] Re: Debug Tools - Charles, DebugBar, Firebug Lite

2008-01-03 Thread Andy Matthews
I've used Charles and honestly I don't like it. I use Firebug for FF, and for Flash dev, I use the Flash Net Debugger. A co-worker uses Service Capture, but I've not tried it enough to know if it's good or not. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED

[jQuery] using animate() with duration/queue object and callback doesn't work

2008-01-03 Thread chrismarx
hi, this works fine $elem.animate( {opacity:0}, 600, callback) .animate( {height:"hide"}, 700); but this doesn't $elem.animate( {opacity:0}, {queue:false, duration:600}, callback) .animate( {height:"hide"}, 700); nor this $elem.animate( {opacity:0}, {queue:false, duration

[jQuery] Re: cluetip and clicking on href

2008-01-03 Thread K Bouton
Happy New Year. Hope you had a good holiday. Your new version was exactly whatI wanted. Perfect Thanks! K On Dec 21 2007, 4:25 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote: > Hi K, > > Thanks for the feedback and for the clear description of the problem > you're having with the clueTip plugin. I

[jQuery] Accessing Another Window

2008-01-03 Thread Steve @ MFB
Looking for information on how to access an opened window via: $("newwindow.#tabnav").tabsAdd('#new-tab', 'Customer #4'); Where newwindow is the name of a variable that holds window.open. I have a function that checks to see if the window is open, and if it is, opens a tab (HTML) within that wi

[jQuery] Re: Drop Shadow Plugin

2008-01-03 Thread McLars
Hannes, I'm sorry, but I don't see anything wrong with your code. I assume you have renamed the plugin files, since they normally begin with "jquery." Otherwise, unless there's a syntax error in there I can't see, it should work just like that. Are you getting any errors at all? Thanks, Larry

[jQuery] Replacing tags

2008-01-03 Thread neXib
I have been fiddling with the replacing content in the html with jQuery, and I'm loving it. Stuff degrades nicely. We use a content editor at work that generates tags with upper case letters, and that doesn't XHTML validate, so I'd like to temporarily replace them with lowercase tags with javascri

[jQuery] thickbox on a link from an ajax call

2008-01-03 Thread Ali
Hey so basically heres the deal I have thickbox in index.cfm. Index.cfm does an ajax call that loads in a product list $.ajax({ url: sendURL, cache: false, success: function(html){ document.getElementById('contentBox').innerHTML = html;} }); When one clicks a link from the ajax loaded

[jQuery] Re: Drop Shadow Plugin

2008-01-03 Thread McLars
Jonah, Thanks for the tip, I will think about that for future enhancements. There's currently another thread where someone says the .clone() method is slow too. In either case, I'm not too worried about speed. The plugin is really only intended for adding a few drop shadows to a page, just to add

[jQuery] Re: Thickbox Position is Too Low in IE 6

2008-01-03 Thread bconoly
I'm assuming you found my thread on how to fix it, but if not, here's the solution I found. It actually turned out that sometimes the jQuery.browser.version sometimes returns an object and sometimes returns a number so this should work. (I'm also using v3.1) function tb_position() { jQuery(

[jQuery] Re: Debug Tools - Charles, DebugBar, Firebug Lite

2008-01-03 Thread Christof Donat
Hi, > What debug tools do you all use? [...] How about tools for IE? > Is there anything you'd reccomend? alert() Christof

[jQuery] Debug Tools - Charles, DebugBar, Firebug Lite

2008-01-03 Thread cfdvlpr
What debug tools do you all use? So far, I've just used firebug. That really only seems to work well for me in Firefox and it works very well - makes my life 100 times easier. How about tools for IE? Is there anything you'd reccomend? As much as I hate coding for IE, it's what 80% of our visito

[jQuery] Re: Cluetip delayed?

2008-01-03 Thread Karl Swedberg
Hi Shawn, On the clueTip end of things, there shouldn't be any delay, really, because the code isn't doing a whole lot other than positioning the tooltip. One thing you could try is to pull out the reference to the hoverIntent plugin in the page's . I know you set all the hoverIntent par

[jQuery] Re: binding click event using .each()

2008-01-03 Thread George
Hi Scott, You had it about right, just try it without the each() loop, like this: $("a.delPhoto").click(function(){ var photo_id = $(this).attr("id"); $.post("delete_photo.php", {photo_id: id}) }); Good ol' jQuery will bind to each of the a.delPhoto tags without you having to write an e

[jQuery] Re: [ANNOUNCE] jQuery.ScrollTo 1.3 released

2008-01-03 Thread Ariel Flesler
Ok, sounds good, I'll try to add that ASAP. Thanks! Ariel Flesler On 3 ene, 12:33, "Andy Matthews" <[EMAIL PROTECTED]> wrote: > Ariel... > > I know I could check the source...that would be easy. But it's also nice to > have a quick reference as to what I'm clicking on. Mike Alsup's Cycle demos

[jQuery] Re: [ANNOUNCE] jQuery.ScrollTo 1.3 released

2008-01-03 Thread Andy Matthews
Ariel... I know I could check the source...that would be easy. But it's also nice to have a quick reference as to what I'm clicking on. Mike Alsup's Cycle demos are a perfect example. With every single demo instance, the specific code used to run that demo is right next to it. -Original Mes

[jQuery] Re: [ANNOUNCE] jQuery.ScrollTo 1.3 released

2008-01-03 Thread Ariel Flesler
Thanks to all of you for the quick and encouraging reply. @Andy I thought developers always checked the source ( asi in, View Source ). I was told that the code, in former demo was not clear. So I made this one very redundant and full of comments. Maybe I should add a sign saying "check the d

[jQuery] Re: [ANNOUNCE] jQuery.ScrollTo 1.3 released

2008-01-03 Thread Andy Matthews
Oh...one thing I'd like to see on the demos is a code view. On the various links that you can click, I'd like to see exactly what options you're using. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ariel Flesler Sent: Thursday, January 03, 200

[jQuery] Re: jQuery.ScrollTo 1.3 released

2008-01-03 Thread Andy Matthews
This is KICKIN'! Well done Ariel!! -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alexandre Plennevaux Sent: Thursday, January 03, 2008 7:16 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: jQuery.ScrollTo 1.3 released veeery nice!

[jQuery] Re: Is there an sample like iGoogle?

2008-01-03 Thread Andy Matthews
This might work for you: http://host.sonspring.com/portlets/ -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ayeah Sent: Wednesday, January 02, 2008 10:33 PM To: jQuery (English) Subject: [jQuery] Is there an sample like iGoogle? I am making

[jQuery] Re: Multiple & autocomplete selector

2008-01-03 Thread Dan G. Switzer, II
Julien, >Hello there, > >I was wondering if you knew about a plugin, or if you knew if it was >easy to make a text input coupled with an autocomplete functionality >which adds a "box" for each item added to it. A bit like facebook does >to add multiple recipients for a message into a text input,

[jQuery] Re: jQuery UI Tabs / Tabs 3 + Fading = can't CSS validate?

2008-01-03 Thread Klaus Hartl
On 3 Jan., 05:24, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Hi, > > I just installed the jQuery UI Tabs / Tabs 3 and I am using the fading > version. My CSS won't validate now. Any suggestions on fixing this? > Thanks. -chris IE uses a proprietary property (instead of CSS 3 - in fact they

[jQuery] Re: Superfish feature request - pixelshift/redraw bug

2008-01-03 Thread Jesse Klaasse
This issue has something to do with the animation. When I replace the animation with a simple show() method, there's no pixel shift anymore.. * There's some strange submenu text pixel-shift (FF only) and right border redrawing (both IE and FF) going on, which I can't explain. However, this

[jQuery] Re: jQuery.ScrollTo 1.3 released

2008-01-03 Thread Alexandre Plennevaux
veeery nice! On Jan 3, 2008 1:29 PM, Ariel Flesler <[EMAIL PROTECTED]> wrote: > > Here's the link to the project, it includes the links to the demo, > changelog, etc. > > http://plugins.jquery.com/project/ScrollTo > > Thanks again :) > > Ariel Flesler > > > On 3 ene, 09:27, Ariel Flesler <[E

[jQuery] Superfish feature request

2008-01-03 Thread Jesse Klaasse
For the demo of the latest update/example: http://www.klaasse.net/superfish-ext/superfish.html New options: * autofit (boolean) - Used to enable intelligent expansion. When a submenu doesn't fit on screen, the position of the menu is adapted in order to make it fit as good as possible. *

[jQuery] Re: Drop Shadow Plugin

2008-01-03 Thread weepy
The only issue I have so far is with the speed - it can be quite slow. You could significantly speed up your HTML creation by simply creating the HTML by concatenating strings. Jquery's functions are generally quite slow. e.g. instead of divShadow.append(shadows[i]); use divShadow[0].innerHT

[jQuery] Re: jQuery.ScrollTo 1.3 released

2008-01-03 Thread Ariel Flesler
Here's the link to the project, it includes the links to the demo, changelog, etc. http://plugins.jquery.com/project/ScrollTo Thanks again :) Ariel Flesler On 3 ene, 09:27, Ariel Flesler <[EMAIL PROTECTED]> wrote: > Hi everyone > > jQuery.ScrollTo 1.3 is out, It includes a few fixes, some feat

[jQuery] [ANNOUNCE] jQuery.ScrollTo 1.3 released

2008-01-03 Thread Ariel Flesler
Hi everyone jQuery.ScrollTo 1.3 is out, It includes a few fixes, some features and it went through a structural change. Fixed the behavior for Opera which seems to scroll on both and . This last change, requires some crossbrowser testing. It works well on FF 2.0.0.11, IE 6, Opera 9.22 and Safar

[jQuery] Re: Drop Shadow Plugin

2008-01-03 Thread slooodge
Hi Larry, first of all, thanks for sharing your beautiful dropshadow plugin! I would like to use it on one of my website to create a shadow around images. But unfortunately I can't get it running. I am german and my english is not very good, so maybe I just misunderstood the documentation. I simp

[jQuery] Ajax callback hits problem on IE6/7 when the load up page is JSP/JSF

2008-01-03 Thread Wei
hi all, i am using the following scripts : what i am trying to do is to have the tab contents loaded up when user clicks the tab. so i think ajax page loading may come handy here. so here is my code : $(document).ready(function(){ $('#example ul').tabs({ fxSlide: t

[jQuery] Re: jquery slimbox?

2008-01-03 Thread djot
- http://code.google.com/p/moonbox/ djot - Sean Catchpole wrote: > > There was recently one just made called Moonbox although I cannot find a > link at the moment. Keep your eyes open for it. > > ~Sean > > On 8/12/07, iblastoff <[EMAIL PROTECTED]> wrote: >> >> >> Hi, >> >> I've searched to n

[jQuery] binding click event using .each()

2008-01-03 Thread Scottatron
I'm having some trouble understanding if I am using .each() to correctly bind a function to the click event of multiple links. I have a photo gallery consisting of a handful of images enclosed the a div and some controls: ... ... Delete I am trying to create an AJAX delete function

[jQuery] jQuery UI Tabs / Tabs 3 + Fading = can't CSS validate?

2008-01-03 Thread [EMAIL PROTECTED]
Hi, I just installed the jQuery UI Tabs / Tabs 3 and I am using the fading version. My CSS won't validate now. Any suggestions on fixing this? Thanks. -chris

[jQuery] Ajax callback hits problem on IE6/7 when the load up page is JSP/JSF

2008-01-03 Thread Wei
hi all, (i posted my msg but i don't see it on the message board.. now retry) i am using the following two libraries: what i am trying to do is to load up the tab content when the user clicks the tab. so i think ajax page load up comes handy here. so i used : $(document).ready(func

[jQuery] Re: IE7 DOM manipulation and redraws

2008-01-03 Thread Uwe C. Schroeder
Actually I found a workaround for this. I now inject a dummy after the remove operation - and that refreshes the display. Not nice, but it works. Code now looks like this: $('#messagecontainer'+messageid).remove(); $('.boxed').append(document.createElement('div')); where #messagecontai

[jQuery] Re: Cluetip delayed?

2008-01-03 Thread McLars
I don't know anything about the clueTip. Hopefully, someone else can help you with that. Are you sure Ajax is necessary, though? You say you want the application to be snappy (a laudable goal), but it sounds like there is a bit of a speed hit with the database. So, even if you get the Ajax to fir

[jQuery] Is there an sample like iGoogle?

2008-01-03 Thread ayeah
I am making a page like iGoogle, all parts are customizable, I tried jquery UI draggable and droppable, but confused with layout of dragged items...anyone has simular samples? iGoogle: http://www.google.com/ig

[jQuery] Re: [SITE SUBMISSION] Brightegg.com

2008-01-03 Thread Ryan Rose
These are all great, valid points. Thanks for the feedback. On Jan 2, 1:49 pm, "Andy Matthews" <[EMAIL PROTECTED]> wrote: > One point on the password strength meter. The green of the "very strong" has > almost no contrast against the light blue of the field module. It's very > difficult to read.

[jQuery] Re: plugins doesnt show up

2008-01-03 Thread Rick
tnx John, my plugin shows up now :)

[jQuery] Re: Superfish feature request

2008-01-03 Thread Jesse Klaasse
And a little update, as it seems to work great now (tested in IE6, IE7 and FF2): http://www.klaasse.net/superfish-ext/superfish.html I'm not totally satisfied yet, because: - I'm using + 1 in my calculations to include border/margin/padding stuff in the width() and height() results; - There's som

[jQuery] Re: plugins doesnt show up

2008-01-03 Thread John Resig
You have to have at least one release for the project in order for it to show up. I think Mike is working on a way to circumvent that, but he's busy right now with his new child. For now, just add a release and the plugin will show up. --John On Jan 3, 2008 3:31 AM, Rick <[EMAIL PROTECTED]> wrot

[jQuery] plugins doesnt show up

2008-01-03 Thread Rick
I have submitted my plugin on http://plugins.jquery.com/ but it doesnt show up for some reason. I have selected 'User Interface' as categorie, but its not there. this is the plugin: http://plugins.jquery.com/project/jquery-roundcorners-canvas