[jQuery] Re: ClueTip Tooltips only appear on PageLoad, but not after partial page postback in ASP.Net web application

2009-02-12 Thread aschmid
You'll need to rebind cluetip after partial page updates. I prefer to use the livquery plugin to do this, as it keeps the event bindings through dom updates, or in your case updatepanel partial page loads. With livequery you could do the following $(document).ready(function() { $(".nicetooltip").l

[jQuery] Re: Upgraded from 1.2.1 to 1.3.1 and jquery.flash has stopped working.

2009-02-12 Thread aschmid
Not sure about the plugin, but the problem is with the @ character in the selector. The expression should be [type='file'] and not [...@type='file'] On Feb 12, 7:35 am, Dan wrote: > Hello! > > I have just upgraded from jQuery 1.2.1 to 1.3.1 however this has > broken the jQuery.flash plugin. (I'm

[jQuery] Re: SlideShow based on SQL Server

2008-12-08 Thread aschmid
essage- > From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On > > Behalf Of aschmid > Sent: Sunday, December 07, 2008 12:34 PM > To: jQuery (English) > Subject: [jQuery] Re: SlideShow based on SQL Server > > Paolo, > > I personally use the cycle plugin for

[jQuery] Re: Need help modifying this jQuery...

2008-12-07 Thread aschmid
Rick, You could try the form plugin as below Email: Password: $(document).ready(function() { // bind 'myForm' and provide a simple callback function $('#myForm').ajaxForm( { dataType: 'json', success:

[jQuery] Re: SlideShow based on SQL Server

2008-12-07 Thread aschmid
Paolo, I personally use the cycle plugin for slideshows, and it's worked nicely so far. If you don't want to use a server side repeater to build your list of images and would prefer to do it client side, I would use a technique like the one in this article http://encosia.com/2008/06/26/use-jque

[jQuery] Re: - Bug or something

2008-12-07 Thread aschmid
Sorry, the previous code was incorrect. The ) after the url needs to be removed $('.list').load( { url: "/ajax-list.php", callback: function(responseText, textStatus, XMLHttpRequest) { // rebind tooltips } }); On Dec 7, 12:24 pm, aschm

[jQuery] Re: - Bug or something

2008-12-07 Thread aschmid
Dani, I believe you'll have to rebind tooltips after you load the ajax $('.list').load( { url: "/ajax-list.php"), callback: function(responseText, textStatus, XMLHttpRequest) { // rebind tooltips } }); Andrew On Dec 7, 7:58 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTE

[jQuery] Re: Modified ClueTip Not working in IE.

2008-12-06 Thread aschmid
Did anybody ever figure out a way to position the cluetip relative to it's parent rather than the mouse? I would also like to do this as I'm attaching the cluetips to areas in a map and I want to always have them in the same place so they don't block any of the image using the map. Regards, Andre