[jQuery] Re: problem with tablesorter and dynamic table content

2008-04-06 Thread Matt Grimm
I also ran across this issue with dynamically loaded tbody content. I came to the conclusion, after poring over the tablesorter source code, that the only solution is to rebuild the entire table with each dynamic reload. The idea was originally posted here:

[jQuery] Re: Order of presence of DOM Elements

2008-04-06 Thread Olaf Gleba
Hi Mike. Am 06.04.2008 um 03:09 schrieb Michael Geary: Olaf, I take it that mySettings is a variable defined in your set.js script, is that right? Right. You should change set.js to call a function instead of merely setting a variable. The function it calls will be where you put the code

[jQuery] Two versions alongside each other

2008-04-06 Thread Rowan
I'm looking for a way to have two versions of jQuery running side by side, I found a page that talks about using noConflict* with other libraries, but that doesn't look like the solution for me. The versions I want to use are 1.0.4 and 1.2.3. Is there anything I can do? *

[jQuery] How do I avoid this leak?

2008-04-06 Thread John
Here's what I'm doing: - I have table element that needs to be populated from JSON coming in from an XHR. - Calling empty() on the table's tbody to get rid of the rows from previous responses, and buiding new tr and td elements for the newly returned data. According to drip, every time i empty

[jQuery] Re: cycle plugin with image Array

2008-04-06 Thread tetris
thank you, this looks really cool , i'll try it and if i can help i'll do. On Apr 6, 1:49 am, Mike Alsup [EMAIL PROTECTED] wrote: I had the same issues, and am experimenting with various ways to delay and/or prevent un-needed image loading. I'll post back with any promising results

[jQuery] Re: Drag and Drop question

2008-04-06 Thread the_woodsman
Do you have firefox and firebug? Just run console.log(ui) to dump all the fields and methods of the object to the firebug console... should be a useful place to start! On Apr 5, 8:08 pm, chris [EMAIL PROTECTED] wrote: I am still having problems with this. I can't find anything on the web

[jQuery] jquery plugin: dodo's picklist

2008-04-06 Thread [EMAIL PROTECTED]
Hello, I modified rob.desbois' jqmultiselects jQuery plugin to produce this http://pure-essence.net/stuff/webTips/dodosPicklist/index.html Hope it's useful for someone :)

[jQuery] how to bind click event to div element created dynamic

2008-04-06 Thread thomas chen
I'm newbie to jquery.i bind click event to div element which is created dynamiclly. but it can't work. Anyone could help me? Thank a lot thomas.chen The following is my code! !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN head titleJQuery/title meta http-equiv=Content-Type

[jQuery] jquery.blockUI: Any way to preload images for the blockUI dialog?

2008-04-06 Thread miCRoSCoPiC^eaRthLinG
Hi, I am loading this animated .gif loader image into the blockUI dialog. When the dialog comes up, there's a lag of 2-3 seconds before the image appears.. this looks pretty unprofessional. So is there any way to pre-load these images so that they appear along with the message the moment the

[jQuery] Re: Sticky (scrolling) element

2008-04-06 Thread Thomas Jaggi
Hi spectrus Here you can see what I mean: http://view-source.de/ext/larepublique/slider-final/ Seems to work now. There is just a problem in IE6: As soon as there are any background- images, it's not really smooth any more... But same problem with the initial version. Probably that's because

[jQuery] Re: JQuery bigginer

2008-04-06 Thread thomas chen
script lanuage=javascript $(document).ready(function(){ $('#dayOfBirth').bind('focus',function(){ $(this).val(''); }); }); /script - Original Message - From: Raghu [EMAIL PROTECTED] To:

[jQuery] is there a way to set the index of an element?

2008-04-06 Thread hedgomatic
Let's say I have a page containing the following: DIV class=element ID=0 1/DIV DIV class=element ID=1 1/DIV DIV class=element ID=2 1/DIV DIV class=element ID=3 1/DIV DIV class=element ID=4 1/DIV DIV class=element ID=5 1/DIV INPUT type=button ID=randomize VALUE=click me! and I want to randomize

[jQuery] ui.sortable problem

2008-04-06 Thread Vaska
I've noticed the oddest thing...or perhaps it's not odd at all. I have a series of lists that I use ui.sortable to move things around...works great...except... It creates an extra li element and attaches it to the end of the active ul group. For instance I start with... ul lione/li

[jQuery] Re: Autocomplete and JSON

2008-04-06 Thread Jörn Zaefferer
dineshv schrieb: Many thanks Shawn and Jorn - the use of the MAX parameter makes sense now. Onto, Ajax and JSON. On the Autocomplete site there is an example as follows: EXAMPLE Autocomplete a text-input with data received via AJAX. For small to medium sized datasets. JavaScript:

[jQuery] Re: Comet Technique - possible with jQuery? Plugin?

2008-04-06 Thread Jörn Zaefferer
coughlinsmyalias schrieb: Hey, I have been doing some research on Comet to use on my site: http://rksdesignstudios.com/magnet/ - To try to keep it live as possible almost to push the content to see other changes and keep the page constantly updated. I did a search here on the group but really

[jQuery] Is there an Event.stop for hrefs?

2008-04-06 Thread Michael Sharman
Hi guys, I am listening for an href click in my document.ready function and I want to make sure the href isn't followed by the browser for users who have javascript turned on, and is followed by users who have javascript turned off. This is my href: a href=http://mysite.com/gohere.html;

[jQuery] Re: Is there an Event.stop for hrefs?

2008-04-06 Thread Josh Nathanson
Return false is the accepted method and best practice in jQuery. -- Josh - Original Message - From: Michael Sharman [EMAIL PROTECTED] To: jQuery (English) jquery-en@googlegroups.com Sent: Sunday, April 06, 2008 3:26 PM Subject: [jQuery] Is there an Event.stop for hrefs? Hi guys,

[jQuery] jQuery.FastTrigger

2008-04-06 Thread Ariel Flesler
Hi Added a new plugin that adds a faster version of $.fn.trigger and $.trigger. There's no real magic, removed all the internal fat, optimized it for scalability and added many other improvements. It's not the most interesting or innovative plugin, but it might be very useful for someone using

[jQuery] Re: Is there an Event.stop for hrefs?

2008-04-06 Thread Erik Beeson
Returning false is fine, but there's also event.preventDefault(): http://docs.jquery.com/Events_%28Guide%29#event.preventDefault.28__.29 $('a').click(function(e) { e.preventDefault(); }); --Erik On 4/6/08, Michael Sharman [EMAIL PROTECTED] wrote: Hi guys, I am listening for an href click

[jQuery] Re: Drag and Drop question

2008-04-06 Thread chris
That will do it. Thanks for the tip :) On Apr 6, 6:33 am, the_woodsman [EMAIL PROTECTED] wrote: Do you have firefox and firebug? Just run console.log(ui)  to dump all the fields and methods of the object to the firebug console... should be a useful place to start! On Apr 5, 8:08 pm, chris

[jQuery] Re: Need Special Menu Plugin

2008-04-06 Thread Roberto
Guys, easier, yes, but not faster. Surfing a website hosted in the UK from the USA is fairly slow. I'm in the USA and I built a site for a guy in the UK with his preferred hosting provider in the UK -- 1and1.co.uk. He says it's super fast, but I see it as slow. He says he wants admin moderators

[jQuery] Re: Comet Technique - possible with jQuery? Plugin?

2008-04-06 Thread coughlinsmyalias
*bump* On Apr 5, 2:57 pm, coughlinsmyalias [EMAIL PROTECTED] wrote: Hey, I have been doing some research on Comet to use on my site:http://rksdesignstudios.com/magnet/- To try to keep it live as possible almost to push the content to see other changes and keep the page constantly updated.

[jQuery] Re: Autocomplete and JSON

2008-04-06 Thread Ashley
This is possible but a bit difficult with the plugin. I wish it were easier as I don't think there is yet a jQuery autocomplete that competes with those from other packages like YUI. You have to override the 'parse' and 'formatItem' functions. Here is an example of it that I'm using. var

[jQuery] two photos in one line

2008-04-06 Thread elvors
Hi! I have a question: How can I put two photos in one line? (vertical gallery) Example: http://elvors.deviantart.com/art/elvors-org-own-photogallery-81987811 If I edit the width of the gallery, that two pictures in one line, then I can scroll above the number of the photos... Thank you for

[jQuery] Tooltip with Lightbox

2008-04-06 Thread Macarrão
Hi! I've been using the jquery.tooltip with Lightbox, but the Tooltip 'steals' the title attribute value and the Lightbox can't show it! What can I do to solve this? Any suggestion? Have anyone had the same problem?

[jQuery] Ajax? issue in IE 7

2008-04-06 Thread David D
I have a login box that loads inside a container via an ajax request, using .click. Here's the code: $(document).ready(function(){ $('a.login').click(function(){ var thiscontainer = # + this.rel; $.ajax({

[jQuery] Accordion: missing auto-close

2008-04-06 Thread [EMAIL PROTECTED]
In the menus here: http://vanilla-spa.homeholistics.com/treatments.htm , only the nested menu at the top auto-closes when you click another item. The main items remain open until you click them again. I don't think this is the default behaviour (I want only one item open at a time) but can't find

[jQuery] Re: How to apply a Zebra Table Effect considering 3 rows instead 1

2008-04-06 Thread Leandro Vieira Pinho
Thanks guy for the answers. Cheers.