[jQuery] Re: Easy way to filter and sort a list

2008-05-17 Thread hubbs
Would i use .filter() for this? On May 16, 11:42 am, hubbs [EMAIL PROTECTED] wrote: I am looking for a way to easily filter, and short a list.  I found the tableFilter plugin, but it is an overkill for what I need, and I don't want to use tables.  I want to be able to filter a list of items,

[jQuery] Need some help....

2008-05-17 Thread Aaron
Hi I want to know how I could test if I added the javascript right??? like I am not sure if when I added the javascript with the right path . I know I have to use the script tags . The problem I am having is using the Hover and also fadeIn fadeOut. I want to create a tool tip thing but

[jQuery] Re: Problem with function

2008-05-17 Thread lukas
Thanks, but it still doesn't work... On May 16, 6:06 pm, Wizzud [EMAIL PROTECTED] wrote: You need to enclose the jQuery code inside Document Ready ...http://docs.jquery.com/Tutorials:How_jQuery_Works#Launching_Code_on_D... On May 16, 5:17 pm, lukas [EMAIL PROTECTED] wrote: Hello! I

[jQuery] Re: $.post() not sending info

2008-05-17 Thread riscphree
Ah, I see now. I went ahead and got the Forms plugin working and that was really so easy to do. At least I know how to do it another way now. Thanks! On May 17, 12:05 am, Jason Huck [EMAIL PROTECTED] wrote: If this code is verbatim, then I would say it's because your $.post() call does not

[jQuery] Can jquery change the period in an OL to a hypen?

2008-05-17 Thread EricC
So the title says it all pretty much. I have a design and I need to have some running numbers along the side of a list. An ol would be perfect and it is rendering: 1998. Item 1 1999. Item 2 To match the designs I need it to be: 1998 - Item 1 1999 - Item 2 I could just make a table but it

[jQuery] Re: Easy way to filter and sort a list

2008-05-17 Thread Eric Ongerth
Have you looked at http://plugins.jquery.com/project/autocompletex ? On May 16, 11:09 pm, hubbs [EMAIL PROTECTED] wrote: Would i use .filter() for this? On May 16, 11:42 am, hubbs [EMAIL PROTECTED] wrote: I am looking for a way to easily filter, and short a list. I found the tableFilter

[jQuery] Re: jQuery UI

2008-05-17 Thread Richard D. Worth
This is a great article. Thank you for sharing, and I'm looking forward to more. A minor note: 1.5b2 and 1.5b4 require alpha and beta versions of jQuery 1.2.4. They are included in each zip file (if you download the whole thing), or can be grabbed here:

[jQuery] Re: Autocomplete - is bgiframe required?

2008-05-17 Thread Aaron Barker
I just submitted a bug on this a few days ago, which also contains a fix for it http://dev.jquery.com/ticket/2866 Copied here for posterity Line 634 is currently: list.bgiframe(); and should be if($.fn.bgIframe) list.bgiframe(); On May 16, 12:28 pm, rolfsf [EMAIL PROTECTED] wrote: I'm

[jQuery] [Announce] Password Strength Meter 2 release

2008-05-17 Thread Tane Piper
Hey folks, Just a quick update to let you all know that I've released a new version of my password strength meter plugin: http://digitalspaghetti.me.uk/2008/05/new-password-strength-meter-released/ This version has a lot of improvements over the last few versions, and now includes a method

[jQuery] Re: Can jquery change the period in an OL to a hypen?

2008-05-17 Thread bjorsq
Try this: $(document).ready(function() { $('ol li').each(function() { $(this).html($(this).html().replace('/\./', ' -')); }); }); What this does is go through all li elements of all ol lists and perform a String.replace() on the existing content

[jQuery] Concat

2008-05-17 Thread eppytx
I have the following jquery in an gallery page: $(document).ready(function(){ $(#thumbnail a).click(function(){ $(#picture a).attr({href: $(this).attr(href)}); $(#picture img).attr({src: $(this).attr(href), title: $( img, this).attr(title)});

[jQuery] Re: Turn off Cache Busting in $.getScript

2008-05-17 Thread JoeM
So then since the cross domain scripts are fetched by adding a script tag. All of the above methods for turning caching on/off via the ajax settings do not apply? The cross domain script acquisition appears to ALWAYS have the cache busting on. Is there a place to request as a feature maybe in

[jQuery] Re: Concat

2008-05-17 Thread Tane Piper
var imagename = $('a').attr('href'); var newname = 'M' + imagename; $('a').attr('href', newname); eppytx wrote: I have the following jquery in an gallery page: $(document).ready(function(){ $(#thumbnail a).click(function(){ $(#picture a).attr({href: $(this).attr(href)});

[jQuery] Re: Any way to avoid having this IE warning message?

2008-05-17 Thread [EMAIL PROTECTED]
Hi, Thanks for the link and your response, but I guess I'm slow. I have two event handlers (click and blur) that I want to definite within my document.ready function. How am I supposed to use setTimeout? How do I how long to set the timeout for if I don't know how long it will take for the

[jQuery] Re: [blockUI] proposed IE6 patch to allowBodyStretch option

2008-05-17 Thread Mike Alsup
I've downloaded the latest blockUI code and despite using the new allowBodyStretch option, the overlay still will not completely cover the viewport in IE6, for short pages. Hi Brian, I'm not seeing the same problem as you describe. Does this page work for you:

[jQuery] Re: Any way to avoid having this IE warning message?

2008-05-17 Thread Michael Geary
The idea with setTimeout is not to wait until the page loads - you don't have to guess at a specific timeout value - but to simply break up a long script into pieces that don't have to all run at once. The typical setTimeout interval for this purpose is 1 millisecond, i.e. the shortest possible

[jQuery] Corners and IE 7 problem

2008-05-17 Thread Kyle
I've used the jQuery Corner plugin for some time now and have always had an easy time. However, for some reason, I'm running into trouble now. The code works perfectly in FF/win, FF/mac, Safari/mac but not IE7/win (haven't tested anything else). In IE7/win it will only apply the corners to the

[jQuery] Re: Can jquery change the period in an OL to a hypen?

2008-05-17 Thread EricC
Thank you so much for this example. It works quite well on the content of the li but it does not modify the behavior of the ol meaning that period stays. Ah well I thought it was a long shot, I guess I am going with a table, lol.

[jQuery] Re: Can jquery change the period in an OL to a hypen?

2008-05-17 Thread Karl Swedberg
Hi Eric, Another way you could go about this is to continue using the ol but hide the numbers through CSS: ol { list-style: none; } Then you could prepend the number with the hyphen to each li Inside a document ready, you could do something like this (untested):

[jQuery] Re: Corners and IE 7 problem

2008-05-17 Thread Kyle
Well the problem, as far as I can tell, is that the li items are floats instead of blocks.

[jQuery] Re: Corners and IE 7 problem

2008-05-17 Thread Kyle
http://epistemicdev.info/lsn/test.php For the curious. First is an unordered list with floats. Second is an unordered list with block display. Third is a handful of floating divs. Perfect in FF, Safari. Struggles in IE.

[jQuery] $.get work in firefox not IE?

2008-05-17 Thread robert123
Hi, I use the below code to get some html codes from a 'url' and then write into a div messages $.get(url,{},function(data) { $('#messages').html(data); }); it will work well in firefox, but for IE, it will not show the html data although it is getting data from the url, anyone

[jQuery] Get input value from a loaded page

2008-05-17 Thread dearste
Hi all, i have load into div a page: $(#top).load(top.html); Into top.html thare's a finput like this: input type=hidden id=counter value=?=$Count;? checked=1 / How can i do for retrieve some input value?? I have try this var numsg = $(#counter).val(); but not work. Thanks.