[jQuery] Re: Jquery Perfomance Question

2008-05-23 Thread Karl Rudd
Extremely small differences. If you're worried about the timing then I suggest doing some testing. Karl Rudd On 5/24/08, Alexsandro_xpt <[EMAIL PROTECTED]> wrote: > > There aren't performance diference? > > > > On 23 maio, 18:46, "Karl Rudd" <[EMAIL PROTECTED]> wrote: >> Yes. Put as many as need

[jQuery] Re: Show/hide toggle hides form too...bah!

2008-05-23 Thread Ridge
Oooh SO close Wizzud! Followed your instructions carefully, and set the height of the form equal to the height of div.col. The forms now toggle correctly, stay on when the user is inputting their zip, BUT (taking For Your Home, for example) doesn't submit when the Go button is clicked. It also do

[jQuery] Re: Jquery Perfomance Question

2008-05-23 Thread Alexsandro_xpt
There aren't performance diference? On 23 maio, 18:46, "Karl Rudd" <[EMAIL PROTECTED]> wrote: > Yes. Put as many as needed. > > Karl Rudd > > On Sat, May 24, 2008 at 4:50 AM, Alexsandro_xpt <[EMAIL PROTECTED]> wrote: > > > I don't know about jQuery(document).ready(function(){}); performance. >

[jQuery] Select attribute by checking more than one value

2008-05-23 Thread leggo-my-eggo
Hi, I'm new here, so forgive me if I'm missing something obvious, or violating etiquette. I'm trying the following code: jQuery('.entry a:has( img )[href$={".jpg" || ".gif" || ".png"}]').not('.download').attr('rel', 'popupgallery').addClass('something'); What I want it to do is to find in .entr

[jQuery] Re: Show/hide toggle hides form too...bah!

2008-05-23 Thread Wizzud
$('div#homepage_boxes> div.col').click(function(event) { // only toggle if it was div.col or its H2 that was clicked... if ( this==event.target || $(event.target).is('h2') ){ $(this).siblings('.selected').andSelf().toggleClass('selected'); } return false; }); And you shoul

[jQuery] datepicker select to update a div, and strange datepicker css issue

2008-05-23 Thread pedalpete
I just launched my first jquery site the other day, and I'm trying to make it so that selects a date from the datepicker, a div on the page gets updated with the selected date. Datepicker is launched from within a superfish menu However am having two problems. 1) when I use the code below, i get

[jQuery] Re: Jquery Perfomance Question

2008-05-23 Thread Karl Rudd
Yes. Put as many as needed. Karl Rudd On Sat, May 24, 2008 at 4:50 AM, Alexsandro_xpt <[EMAIL PROTECTED]> wrote: > > I don't know about jQuery(document).ready(function(){}); performance. > > But I wish to know somethings: > > Can I put lot of jQuery(document).ready(function(){...some

[jQuery] Re: [validate] field 1 or field 2

2008-05-23 Thread AlexGrande.com
To see more custom methods go to http://www.thetruetribe.com/ 2008/05/how-to-use-jquery-plugin-validation.html">http:// www.thetruetribe.com/2008/05/how-to-use-jquery-plugin-validation.html On May 23, 9:39 am, "Jörn Zaefferer" <[EMAIL PROTECTED]> wrote: > You can do that with a custom > method:h

[jQuery] Xpath in frames

2008-05-23 Thread xunshirine
Hello. $ function works globally. But I need to use its xpath selector opportunity in subframes of a frameset html. How to reach subframes in a html and use xpath selectors with jquery to get subframe dom nodes? Thanks in advance.

[jQuery] Cluetip + jCarousel???

2008-05-23 Thread Maddlake
I have installed jCarousel on an ecommerce site, to display products. Don't see a way to display text links below and would like instead to have a tooltip on hover which would display the product description and price (ala Netflix). Content is coming into the page via Perl and CGI calls. I now ha

[jQuery] Re: tablesorter pager and multiple tables problem

2008-05-23 Thread dbinaz
Ok, I figured it out. THere is a bug in the pager file. Under return this.each(function() { add this: if(!this.tHead || !this.tBodies) return; On May 22, 11:50 pm, dbinaz <[EMAIL PROTECTED]> wrote: > Seems tablesorter pager does not work if there is a table before the > sorted table that I

[jQuery] .tableSorter - sorting from hidden values

2008-05-23 Thread A13thGuest
Is it possible to sort based on a custom attribute in a column? If so, how? Creating a hidden column with the values I need to sort by is not working out to be the best solution at this point. Thanks in advance.

[jQuery] Re: Return data from dimensions.js

2008-05-23 Thread Brandon Aaron
The offset method returns and object with top and left properties. ... var coordsB = $(this).offset({ scroll: false }); ... Now you can get the top and left offsets like this: var top = coordsB.top; var left = coordsB.left; -- Brandon Aaron On Fri, May 23, 2008 at 1:51 PM, teazer <[EMAIL PROTE

[jQuery] Re: Cycle plugin pagerAnchorBuilder question

2008-05-23 Thread Mike
On May 21, 7:57 pm, Andy Ford <[EMAIL PROTECTED]> wrote: > Thanks, Mike!  I look forward to that feature in the next rev.  Having > the class on the parent LI affords more flexibility with the css. Andy, this is now available in Cycle v2.20. Here's a direct link to the demo: http://www.malsup

[jQuery] Re: Cycle - per slide settings

2008-05-23 Thread Mike
> It's currently not possible to cycle with clip animation since > jQuery's animate function doesn't support it and Cycle delegates to > that for the animation.  But I'd be willing to add a wipe transition > using custom logic.  What sort of wipe transitions are you looking > for?  Just simple le

[jQuery] Return data from dimensions.js

2008-05-23 Thread teazer
I need to save the coordinates of a div to be able to return it to the same location and am having problems posting the offset from dimensions.js This $(".dragL").mouseup(function(e){ var stroke = $(this).attr("id"); var coordsB = $(this).offset({ scroll: false })

[jQuery] Jquery Perfomance Question

2008-05-23 Thread Alexsandro_xpt
I don't know about jQuery(document).ready(function(){}); performance. But I wish to know somethings: Can I put lot of jQuery(document).ready(function(){...some js codes}); in some tag instead just one jQuery(document).ready? Eg: