[jQuery] Re: clearTimeOut(this.iTimer) is not defined

2008-03-29 Thread Ariel Flesler
It's already fixed in the code you show on the test. In most cases, Google gives you faster responses than this group does: http://www.google.com/search?q=cleartimeout -- Ariel Flesler http://flesler.blogspot.com On 29 mar, 14:43, Cronlajoon <[EMAIL PROTECTED]> wrote: > Hi! > > I'm currently t

[jQuery] Re: how remove the attributes added by jquery : jQuery1206707292281

2008-03-29 Thread Karl Rudd
Hmmm so how are the changes to either block being made? Is it via user interaction? Could you track the changes when they are made, that way you wouldn't need to compare the entire block each time. You could also try Jeffery's method and filter the HTML through a regular expression before compari

[jQuery] Modals - What's everyone using?

2008-03-29 Thread Rey Bango
I want to build a modal window with a form in it but don't want to use the blacked out effect similar to many lightbox implementations. What's everyone using for this type of functionality? Rey...

[jQuery] Off Topic: Earth hour

2008-03-29 Thread ripple_27
Anyone participating? http://www3.earthhourus.org/ I will. It's for a good cause. It's for our home, earth.

[jQuery] Re: how to get innerHTML from an external bind()?

2008-03-29 Thread domi01
replace $(elem).html by $(elem).html()

[jQuery] Re: Drop Down Menus and Applets

2008-03-29 Thread Karl Swedberg
Hi Bryan, Are you referring to Flash objects? If so, I just replied to someone yesterday regarding the same issue. Here is the relevant part: If you're using swfObject, you can just use: so.addParam("wmode", "transparent"); for embed, you add the attribute: wmode="transparent" for object, y

[jQuery] Re: JQuery timer with reset option

2008-03-29 Thread Jimslam
UPDATE: I had set the "mousemove" event to bind to "window": $(document).ready(function() { startTimer(); $(window).bind("mousemove", function() { resetTimer(); }); }); That works fine in FF, but IE had some trouble

[jQuery] Image bounce

2008-03-29 Thread ram
A wile back I received a email demonstrating several different image displays. One that I need today but cant find is where the image dropped down from the top and bounced for a few seconds. If any one has a link to the I would be very appreciative. Thanks Ram

[jQuery] clearTimeOut(this.iTimer) is not defined

2008-03-29 Thread Cronlajoon
Hi! I'm currently taking my first steps again my own first plugin. As you probably already figured out, it's not working. It is a small plugin that is supposed to animate a menu or any other element so that it stays visible to the user, even when the user scrolls down the page. Before I can star

[jQuery] array problems

2008-03-29 Thread Tadas J
Hello, I have a problem with arrays. I am getting data from xml and trying to get data to arrays. Here is my code: === var monster = [[[]]]; ... $(this).find('monsters').each(function(id2){ monster[pid][id2]['db_id'] = $(this).find('db_id').text(); }); ... ===

[jQuery] Help with simple toggle not working in IE

2008-03-29 Thread Shakey
Hi am brand new to the wonderful world of JQuery; this shouldnt be too difficult: Why isnt the client login drop-down toggle working in Explorer? www.wdmadvertising.com.au/intervest/index.html Any help would be greatly appreciated :)

[jQuery] Re: Uploader 0.9 beta

2008-03-29 Thread Kai Lautaportti
Hi Gilles! Just wanted to check what the status of the plugin is? cheers, Kai On Mar 2, 8:52 pm, "Gilles (Webunity)" <[EMAIL PROTECTED]> wrote: > Plugin will be ready in 2 to 3 weeks, have some seminars i have to > attend, sorry. > > --- Gilles

[jQuery] Drop Down Menus and Applets

2008-03-29 Thread Bryan Wilson
I've been trying to add a main horizontal nav menu to my web app, but can't figure out how to get the drop down sub menus to show over top of applets. I have tried the superfish plugin with bgiframe plugin exactly how it is shown on the superfish home page. I have also tried the jdMenu plugin wi

[jQuery] Functions from xml parsed document

2008-03-29 Thread elspiko
Hi one and all, I'm loading a page from an xml file, no problems works fine; below is what is output to give a better understand of what im trying to do... <\img src=blah1.jpg /> The plan is, when someone clicks on a thumbnail, it get displayed in the main image. If i hard code some values

[jQuery] Re: how remove the attributes added by jquery : jQuery1206707292281

2008-03-29 Thread domi01
The code with a loop on all elements works fine. In fact my problem is the following : I have 2 trees of html : #block1 and #block2 I want to know if the 2 blocks are the same (same node names , same attributes, same attribute values, ...). The only way I found, is to compare the $('#block

[jQuery] Re: Strange "bold" look after a show in IE6

2008-03-29 Thread Mike Alsup
> Mike, I will test your plugin, once I get back to a "buggy" LCD screen. Is > it doing the same as YUI ? What is YUI doing?

[jQuery] Re: bind() and thousands of elements - inline or extrnal?

2008-03-29 Thread Klaus Hartl
I think in this case it is better to use event delegation, e.g. set up a single handler on the parent table element and handle the click here. You can get to the clicked cell via e.target. --Klaus On Mar 28, 5:25 pm, Leeoniya <[EMAIL PROTECTED]> wrote: > i need to bind a click function to seve

[jQuery] Re: Strange "bold" look after a show in IE6

2008-03-29 Thread Olivier Percebois-Garve
Thanks guys for extensive answers Setting a background partially solved the issue. I'll investigate more on this back at work on Monday. It seems that YUI is slightly better on this than jQuery. http://icant.co.uk/sandbox/msieopacityissue/ Mike, I will test your plugin, once I get back to a "bu

[jQuery] Re: Strange "bold" look after a show in IE6

2008-03-29 Thread Karl Swedberg
Absolutely. Thanks for the clarification (no pun intended), Mike. It seemed the OP was referring specifically to IE6, but a more robust solution is definitely called for. Cheers, --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Mar 29, 2008, at 8:17

[jQuery] Re: JQuery Hello world not working

2008-03-29 Thread Karl Swedberg
--Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Mar 29, 2008, at 6:19 AM, pradeep_tp wrote: Thanks all. I think it is the mistake of the author who wrote this example on the JQuery help page. I just copied and pasted the code, but didnt realize that

[jQuery] Re: Only first cluetip on a page works

2008-03-29 Thread Karl Swedberg
Excellent. Glad to hear it. --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Mar 29, 2008, at 1:24 AM, ooper wrote: Thanks Karl. That did the trick! :) On Mar 28, 9:03 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote: Hi Brian, Yes, an ID absolutely must

[jQuery] Re: dynamically loading javascript files (getScript() behavior)

2008-03-29 Thread Christof Donat
Hi, > Still, I've been using another approach that seems to work fine (at > least) in FF and IE. Insted of getting the file and evaluating it, I > just add a new SCRIPT element to the HEAD of the document with the > specified URL. There are Safari Versions that don't load scripts that way. For n

[jQuery] Re: dynamically loading javascript files (getScript() behavior)

2008-03-29 Thread Ariel Flesler
That's how jQuery loads scripts from remote domains now, allowing cross-domain requests. Cheers -- Ariel Flesler http://flesler.blogspot.com/ On Mar 28, 12:49 pm, sotretus <[EMAIL PROTECTED]> wrote: > Guys, > > I was looking the code for the getScript() function and I saw that > when the javas

[jQuery] Re: Plugin pattern

2008-03-29 Thread Ariel Flesler
You can't.. or you'll lose the `this`. Unless you do: $("seletor").project().ajax().remote(); and each method returns the `this`. Cheers -- Ariel Flesler http://flesler.blogspot.com/ On Mar 28, 11:23 am, alexanmtz <[EMAIL PROTECTED]> wrote: > Hi everyone, > > Im working in a big project of ajax

[jQuery] Re: Strange "bold" look after a show in IE6

2008-03-29 Thread Mike Alsup
> Or, as Snef mentioned, you can define a background color in your > stylesheet for the element that is being faded. Setting the background color will only fix the issue in IE6 and only for certain font sizes. IE7 will still display the text poorly if cleartype is enabled. A more general fix

[jQuery] Re: Calling a jQuery function from within an ajax-loaded div

2008-03-29 Thread Drake Aedus
Lets backtrack for a moment. I have a similar situation, but I don't use that particular plugin (its an older setup, recently modified with jQ). When you load the new div with your ajax call, add the sort to your success: function. For example, in your test case: $.ajax({ type: "GET", cont

[jQuery] Re: clueTip click and drag?

2008-03-29 Thread az
Hi Karl, Thanks for more good advice. I moved the new code into onShow. I had to pass opts as an additional argument to onShow so I could check to see if 'draggable' was set, but after that it worked like a charm! happily dragging clueTips, az On Mar 28, 8:30 am, Karl Swedberg <[EMAIL PROTECT

[jQuery] Re: JQuery Hello world not working

2008-03-29 Thread pradeep_tp
Thanks all. I think it is the mistake of the author who wrote this example on the JQuery help page. I just copied and pasted the code, but didnt realize that I had to add an achor tag. Thanks to everyone for your replies On Mar 5, 9:24 pm, ajpiano <[EMAIL PROTECTED]> wrote: > also, i'm not say

[jQuery] Re: Only first cluetip on a page works

2008-03-29 Thread ooper
Thanks Karl. That did the trick! :) On Mar 28, 9:03 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote: > Hi Brian, > > Yes, an ID absolutely must be unique for a given document if you want > any DOM operations to run predictably. Might I suggest using a class > name instead? Instead of this ... > > >

[jQuery] Re: Validator | does not submit ajax function in Firefox

2008-03-29 Thread Jörn Zaefferer
AlexGrande.com schrieb: In IE it works fine but in FF I have to click again to make it go. Here is the code: ajax function- [...] Any suggestions or hacks? You are binding the submit handler after the form validation succeded. Instead you should run the handler directly, eg. function ajax

[jQuery] Re: async validation

2008-03-29 Thread Jörn Zaefferer
Brian J. Cardiff schrieb: that's an approach, yes. but also on submit you should ensure validations match actual values. So maybe store also last value validated, and there a cron could be implemented pretty easily. That checking, if the previous validated value is the current value, is alread