[jQuery] Re: How to wrap multiple elements at once in one tag.

2007-11-21 Thread Wizzud
var tables = $('table', context); // set context, or modify selector, as needed var starts = tables.filter('.pagestart').map(function(){ return tables.index(this); }); $.each(starts, function(i, v){ tables.slice(v, (starts[i+1] || tables.length)).wrapAll(div id='tableSet+i+'/div); });

[jQuery] Re: Autosuggest

2007-11-21 Thread Gordon
That's odd, with my 150 items test list I found it didn't seem unreasonably slow in IE, though I didn't test in 6. In the end I had to rewrite the code without the support of jQuery because I couldn't figure out how to get fValidate to play nicely with it, and that version runs well in IE6.

[jQuery] Re: AJAX Security

2007-11-21 Thread Tony
Hi, look at this and maybe you will be happy: http://15daysofjquery.com/examples/contact-forms/ On 21 Ноем, 04:42, howa [EMAIL PROTECTED] wrote: On 11月21日, 上午6時34分, Fabien Meghazi [EMAIL PROTECTED] wrote: With a blank or mismatched referrer, the script will always return a username as

[jQuery] Re: fade png24 images in IE7

2007-11-21 Thread Melzmann
Hi I have found a solution for my Problem! You must use the alphaImage filter from Microsoft Use that Code in your CSS Style: filter: progid:DXImageTransform.Microsoft.AlphaImageLoader (src='your.png'); I thought the problem is since the IE7 arrives history, but it doesn´t

[jQuery] Re: How to concatenate all the OPTIONs of a SELECT to a text field ?

2007-11-21 Thread Flesler
What do you want from the options ? the value ? as in: input value=value1, value2, value3 ? If that's what you want, you can do: $('#text').get(0).value = $('select option').map(function( i, op ){ return op.value; }).join(', '); Ariel Flesler On Nov 20, 8:41 pm, Wizzud [EMAIL

[jQuery] How to scroll select list ?

2007-11-21 Thread the_ghost
How 2 scroll with jquery select? For example i have: select size=3 option value=142value 142/option option value=231value 231/option option value=333value 333/option option value=321value 321/option option value=231value 231/option option value=321value 321/option select By default some

[jQuery] Accordion Bug?

2007-11-21 Thread Jason Cartwright
Hi all, I think I've found a bug with the accordion [1] component. $ ().activate(false) [2] doesn't seem to remove the selectedClass class from the header of the selected element, as I'd expect it to. I've made a simple test case over here...

[jQuery] Does javascript interpreter works with HTML parser at the same time in IE???

2007-11-21 Thread [EMAIL PROTECTED]
Hi. I'm just a beginner of javascript. I'm just wondering how browser Engine works.. in this article i just consider about two main part of browser Engene. the first one is html parser, and the other part is javascript interpreter. as i know html parser parses html line by line. I use

[jQuery] Re: Totally lost: scroll the page to put a div at the top

2007-11-21 Thread pbarney
Thanks... Seeing that written that way made it click for me. I appreciate it. On Nov 20, 10:44 am, Flesler [EMAIL PROTECTED] wrote: In your case, $.scrollTo( '#section_1', { speed:300 } ); will be enough. the documentation isn't very clear. If I do $(#section_1).scrollTo(300), what does

[jQuery] Re: IE6 .height() problem

2007-11-21 Thread wellmoon
Hi, thanks for the response, I tried adjusting the line height and overflow but this didn't work, I don't think it's jQuery either, I'm certain it's just IE6 being a terrible browser as usual and not doing things properly. IE7 and FF are fine... On Nov 21, 1:05 am, polyrhythmic [EMAIL

[jQuery] Firefox select change callback is not working

2007-11-21 Thread Atkati
Hi to all, i have a problem dealing with the change event on a select form item. form select id=yes name=yes option value=1My number 1/option option value=2My number 2/option option value=3My number 3/option /select /form script type=text/javascript $(#yes).bind(change,yes);

[jQuery] Re: Problem when adding onclick or onchange attributes to a link on IE7

2007-11-21 Thread CpILL
Hey I'm experiencing something similar. I am trying to attach an onchange event to both a radio button set or a select list and not getting the onchange event firing for IE6 or IE7 :( $(.uc_inventory_ajax_form form).change(function() { onAttributesChange(this);

[jQuery] Re: How to concatenate all the OPTIONs of a SELECT to a text field ?

2007-11-21 Thread guix69
My select looks like this : select multiple= size=6 name=locations[] id=locations option value=parisparis/option option value=londonlondon/option option value=madridmadrid/option /select I would like to have this in the textfield paris;london;madrid or even ;paris;london;madrid since it would

[jQuery] Re: A few jQuery Patterns

2007-11-21 Thread TunaSandwich
So far I have one of the patterns solved. I have the Type 'n List pattern working. I found the TypeWatch pluggin which seems to do what I need. It's at http://jquery.com/plugins/project/TypeWatch I just used their example but I modified it to use AJAX with a querystring.

[jQuery] Re: $.getJSON() problem

2007-11-21 Thread Aljosa Mohorovic
thanks, i had an extra comma. i had no problem with decimal value, replacing comma with dot was not a problem but what would you do if you need to output decimal number with comma instead dot? i'm asking because croatia (country in europe) has decimal comma, not dot. Aljosa

[jQuery] Re: History Remote Post

2007-11-21 Thread Klaus Hartl
On Nov 21, 2:06 am, Talv [EMAIL PROTECTED] wrote: Hi all, Im vey new to Jquery started today infact moving over from mootools and so far whilst things are differnet im developing at a very fast rate, the main reason i moved was because i couldnt get history managers to work correctly so in

[jQuery] Re: Does javascript interpreter works with HTML parser at the same time in IE???

2007-11-21 Thread Jared
When you're using script/style tags, always try to use the appropriate type attribute: code script type=text/javascript/script style type=text/css/style /code From what I understand, javascript in IE is run after the page is loaded (ready), which is AFTER the load event. Meaning, if you put a

[jQuery] Configuring WYMEditor

2007-11-21 Thread Gordon
For the CMS I am currently working on I have decided to go with WYM as the inline HTML editor. TinyMCE seems to do weird things that preclude using FireBug to debug scripts. From what I've been able to figure out from the documentation it is possible to have external events trigger editor

[jQuery] Re: Does javascript interpreter works with HTML parser at the same time in IE???

2007-11-21 Thread Jared
Ok, I made a test page for how load events affect the page scripts and what you are allowed to do (and punished for). Here is the link to the page: http://www.houseofoverlord.com/test/loaddommanipulation.html First of all, the test page isn't as interesting unless you have Firefox and the

[jQuery] Firing off a jQuery action ASAP - before document ready?

2007-11-21 Thread zarino
Hi there! I have a jQuery action which I'd like to run as soon as possible. Currently it runs on (document).ready but that's too late, and I see a flicker of the page before the action takes place (importing a new stylesheet). Is there a way to make an action happen before the doument is ready?

[jQuery] Re: How to concatenate all the OPTIONs of a SELECT to a text field ?

2007-11-21 Thread guix69
Thanks for your reply ! But firebug says join is not a function..what the...

[jQuery] Re: Firing off a jQuery action ASAP - before document ready?

2007-11-21 Thread Andy Matthews
have you tried window.ready? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of zarino Sent: Wednesday, November 21, 2007 8:20 AM To: jQuery (English) Subject: [jQuery] Firing off a jQuery action ASAP - before document ready? Hi there! I have a

[jQuery] Re: How to concatenate all the OPTIONs of a SELECT to a text field ?

2007-11-21 Thread Flesler
Right, sorry, jQuery.map returns a jQuery object, not an array, use this instead, I tested this time :D $('#text').get(0).value = $.map( $('select option'), function( o ){ return o.value; }).join(', '); Ariel Flesler On 21 nov, 11:22, guix69 [EMAIL PROTECTED] wrote: Thanks for your reply

[jQuery] Re: Rounded corners-canvas and ie6

2007-11-21 Thread caruso_g
I am still here, I was not able to find a solution on the net. Any Idea? Thanks again in advance for the help. On 20 Nov, 18:20, caruso_g [EMAIL PROTECTED] wrote: Hi guys, I implemented a rounded-corner-canvas into this project. I used it since its support to borders and a good anti-alias

[jQuery] Re: Ajax Form and latin characters

2007-11-21 Thread Bil Corry
Feed wrote on 11/21/2007 12:23 PM: I'm having a really hard time making my AJAX form submit an e-mail correctly. The form sends the data to an ASP page which then submits an e-mail through CDONTS. The problem is: the latin characters are scrambled in the e-mail received by the final user.

[jQuery] Re: toggle hide show function not working (code provided)

2007-11-21 Thread mdrisser
The problem is that .remove() removes the actual element not the text inside of it. This works: $(a.collapse).html((-)); On Nov 21, 10:35 am, FrankTudor [EMAIL PROTECTED] wrote: script type=text/javascript $(document).ready(function(){ $('.bang').hide(); $(a.collapse).toggle(function()

[jQuery] toggle hide show function not working (code provided)

2007-11-21 Thread FrankTudor
script type=text/javascript $(document).ready(function(){ $('.bang').hide(); $(a.collapse).toggle(function() { $('.bang').show(); $('a.collapse').remove((-)).append((+)); },function(){ $('.bang').hide();

[jQuery] Ajax Form and latin characters

2007-11-21 Thread Feed
Hello all, I'm having a really hard time making my AJAX form submit an e-mail correctly. The form sends the data to an ASP page which then submits an e-mail through CDONTS. The problem is: the latin characters are scrambled in the e-mail received by the final user. Eg.: the word cães is

[jQuery] Superfish - Autotrigger Third Level

2007-11-21 Thread mdrisser
Hi all, I have a three - tiered superfish menu that's working great as is. What I need to do though is automatically show the third levels when the first level is hovered over. code ul class='nav' liMain-1 ul liSub-1 ul

[jQuery] Re: Firing off a jQuery action ASAP - before document ready?

2007-11-21 Thread Glen Lipka
If you put it at the top of the page NOT in a ready block, it should run before the dom is even loaded. Not sure what you are doing. Maybe CSS could help (runs early). Maybe post a sample. Glen On Nov 21, 2007 8:51 AM, Andy Matthews [EMAIL PROTECTED] wrote: have you tried window.ready?

[jQuery] Re: toggle hide show function not working (code provided)

2007-11-21 Thread FrankTudor
Thanks for straighting that out. Frank On Nov 21, 12:49 pm, mdrisser [EMAIL PROTECTED] wrote: The problem is that .remove() removes the actual element not the text inside of it. This works: $(a.collapse).html((-)); On Nov 21, 10:35 am, FrankTudor [EMAIL PROTECTED] wrote: script

[jQuery] Re: $.getJSON() problem

2007-11-21 Thread Jörn Zaefferer
Aljosa Mohorovic schrieb: thanks, i had an extra comma. i had no problem with decimal value, replacing comma with dot was not a problem but what would you do if you need to output decimal number with comma instead dot? i'm asking because croatia (country in europe) has decimal comma, not dot.

[jQuery] Re: How to scroll select list ?

2007-11-21 Thread Flesler
Something like this? http://jquery.com/plugins/project/ScrollTo Ariel Flesler On 21 nov, 07:52, the_ghost [EMAIL PROTECTED] wrote: How 2 scroll with jquery select? For example i have: select size=3 option value=142value 142/option option value=231value 231/option option value=333value

[jQuery] Re: Ajax Form and latin characters

2007-11-21 Thread Feed
I was able to fix it adding this line to the ASP which submits the e- mail: Response.CodePage = 65001 Don't know if this is the correct method but, well, it's working for now. Thanks! On Nov 21, 3:51 pm, Bil Corry [EMAIL PROTECTED] wrote: Feed wrote on 11/21/2007 12:23 PM: I'm having a

[jQuery] Re: Accordion Bug?

2007-11-21 Thread Jörn Zaefferer
Jason Cartwright schrieb: Hi all, I think I've found a bug with the accordion [1] component. $ ().activate(false) [2] doesn't seem to remove the selectedClass class from the header of the selected element, as I'd expect it to. I've made a simple test case over here...

[jQuery] Re: Selector Not Working in IE7?

2007-11-21 Thread SeViR
DebugBar 5 beta and Companion JS are two good free tools for DOM exploring and JS Debugging. Also the paid version of Aptana (Aptana Pro) integrates a very good debugger for IE and Firefox in Eclipse (the free version only debug in Firefox). http://www.my-debugbar.com/wiki/ToDo/Beta

[jQuery] Re: A few jQuery Patterns

2007-11-21 Thread polyrhythmic
Awesome, looks like you're getting the hang of jQuery. Best of luck with your project! Charles On Nov 21, 4:39 am, TunaSandwich [EMAIL PROTECTED] wrote: So far I have one of the patterns solved. I have the Type 'n List pattern working. I found the TypeWatch pluggin which seems to do what

[jQuery] Re: fade png24 images in IE7

2007-11-21 Thread polyrhythmic
This is the not-so-well-known IMG elements with a 24-bit PNG with transparency (in IE7) or with AlphaImageLoader applied (IE6 7) turn the transparency into indexed color when the Alpha filter is applied, directly to the element or to the parent element. The workaround is to turn the IMG into

[jQuery] Re: Rounded corners-canvas and ie6

2007-11-21 Thread polyrhythmic
I believe curvycorners supports borders, I'm not sure that there's a transparent corner jQuery plugin that also supports borders besides the canvas corners. Weird bug, but such is IE. I would also be interested in a solution. Charles On Nov 21, 7:21 am, caruso_g [EMAIL PROTECTED] wrote: I am

[jQuery] Re: fade png24 images in IE7

2007-11-21 Thread polyrhythmic
CORRECTION: *not so well known [bug where] IMG elements... On Nov 21, 1:10 pm, polyrhythmic [EMAIL PROTECTED] wrote: This is the not-so-well-known IMG elements with a 24-bit PNG with transparency (in IE7) or with AlphaImageLoader applied (IE6 7) turn the transparency into indexed color when

[jQuery] Re: New Plugin: jQuery Fx Queues

2007-11-21 Thread polyrhythmic
Ahh, very cool. Thanks! Charles On Nov 20, 3:31 pm, Luciano G. Panaro [EMAIL PROTECTED] wrote: jQuery's core queueing method does it only for the selected element. But when you want to do it for different elements (first fade in #1, then slide down #2, etc.), you need to do it by passing

[jQuery] Edit database rows

2007-11-21 Thread Kaare Rasmussen
Hi I need to edit a number of rows from a Postgres database in one go. As I can see, http://jquery.com/plugins/project/jqGridView could be a good plugin to use. Is it? Any other options wit jQuery? -- Med venlig hilsen Kaare Rasmussen, Jasonic Jasonic Telefon: +45 3816

[jQuery] Re: Firefox select change callback is not working

2007-11-21 Thread Wizzud
Put it inside $(document).ready(function(){ your script }); and it works perfectly fine in FF v2.0.0.9! On Nov 21, 10:45 am, Atkati [EMAIL PROTECTED] wrote: Hi to all, i have a problem dealing with the change event on a select form item. form select id=yes name=yes option

[jQuery] toggleClass() help - assigning double class names that look like this: classname classname

2007-11-21 Thread jenni
The problem with the code below is that it modifies the tag to look like this: Code:a class=video video.active/ When it needs to look like this: Code:a class=video active/ Here is the code that I'm using: Code:function swapMode(mediaType) {

[jQuery] Re: toggleClass() help - assigning double class names that look like this: classname classname

2007-11-21 Thread Karl Rudd
Try $(.video).toggleClass(video active); Karl Rudd On Nov 22, 2007 10:23 AM, [EMAIL PROTECTED] wrote: The problem with the code below is that it modifies the tag to look like this: Code: a class=video video.active/ When it needs to look like this: Code: a class=video active/

[jQuery] Using jQuery to display dynamically generated linked select

2007-11-21 Thread RR_QQ
Hello! So I am having a jQuery issue that I really need help with! Ok so I have a table with several rows. Each row has a copy link so that when clicked a jquery is called that inserts a form right underneath that link that contains a linked select and a button to save. The linked select copies

[jQuery] Re: LiveQuery (Discuss Please)

2007-11-21 Thread alexanmtz
This is the best discussion that I met about livequery... Im the one who loves it at beginning, now the plugin at reacting of weird ways... Its a great plugin and necessary, but in a large project with ajax it becomes a tricky... Now I dont know what I can do... when I test a site that uses it

[jQuery] Re: LiveQuery (Discuss Please)

2007-11-21 Thread alexanmtz
This problem that comes with ajax its a headache... livequery its a great iniciative to solve it... but has it issues, but everyone has to remember, that the problem the this plugin is trying to solve its a problem of the core of the nature of ajax request... so... they try to fight with

[jQuery] Re: LiveQuery (Discuss Please)

2007-11-21 Thread alexanmtz
Its a great plugin, you say everything I was needing to hear... the absoluteley true... Im using livequery like regular bind calls and are happening thinks not planned... but I can´t find another way to do it... Livequery becomes a dependency of the plugin that I was trying to develop... I need

[jQuery] Re: LiveQuery (Discuss Please)

2007-11-21 Thread alexanmtz
Yeah, sure... maybe future jquery versions will take care of that... its a thing to be concern like priority... On 7 nov, 20:06, jason [EMAIL PROTECTED] wrote: I'm all for keeping the core lightweight, but there's plenty of stuff already in the core that is far less useful to me on a daily

[jQuery] Re: LiveQuery (Discuss Please)

2007-11-21 Thread Flesler
maybe adding some event delegation to LiveQuery could improve its performance. Ariel Flesler On 21 nov, 22:46, alexanmtz [EMAIL PROTECTED] wrote: This is the best discussion that I met about livequery... Im the one who loves it at beginning, now the plugin at reacting of weird ways... Its a

[jQuery] Problem with acents on load()

2007-11-21 Thread Chango
Hi I'm using $(#body).load(intro.html), to fill the div body... but i have problems with accents, any help? The main page have: META http-equiv=Content-Type content=text/html; charset=UTF-8 and the page intro.html only have 2 tables without labels htmlhead or body... Thanks, sorry my basic

[jQuery] jQuery.Rule 0.9

2007-11-21 Thread Flesler
I added a new release of this plugin. I passed some functions to jQuery's prototype, so they can be reused. Added to jQuery.fn: ownerNode,sheet,cssRules and cssText. I also added some more useful functions to jQuery.Rule's prototype like text and outerText. I felt most people didn't quite get

[jQuery] [Webpage] Mastermind game

2007-11-21 Thread benjam
I have created a Mastermind game in Javascript and jQuery, and would like to present it here for comments and suggestions. It was kind of a proof of concept for me for several things: 1- Inline images (Base64 encoded) 2- single page script (everything is included in one html file) 3- Javascript

[jQuery] .css() doesn't seem to work when I add the transitional DTD to my index page?

2007-11-21 Thread Mark Lacas
I'm having a weird problem. . . When I add: !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN http://www.w3.org/TR/html4/loose.dtd; to the top of my index page, the css calls from the code snippet below stop working. //

[jQuery] Re: Firing off a jQuery action ASAP - before document ready?

2007-11-21 Thread zarino
Hi Andy. Thanks for the suggestion, but I'm not sure it's made much of a difference. Zarino On Nov 21, 4:51 pm, Andy Matthews [EMAIL PROTECTED] wrote: have you tried window.ready? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

[jQuery] firing event when inner html of element was updated

2007-11-21 Thread Siarhei Barysiuk
Hello list, Which event type should I use if I want to execute my code when DOM of element was changed? For example I have 'div' and set inner html like node.innerHTML or $ (node).html() and want to execute some code after update (in event listener). I'll try to explain why I need event

[jQuery] Re: Storing last clicked to check against in future function calls.

2007-11-21 Thread [EMAIL PROTECTED]
Thanks for asking, let me try and clear up some of your questions. The DOM looks something like this: ul id=control lia href=AA/a ul liA/li /ul /li lia href=BB/a ul

[jQuery] Re: Configuring WYMEditor

2007-11-21 Thread Jared
What are your opinions of this editor for folks who are somewhat squeamish to change (ie, used to MS Word)? I need to encourage html origination for some kinds of files (policies, procedures, etc...), and I would like something that is slimmer and simpler than tinyMCE. On Nov 21, 9:45 am, Gordon

[jQuery] Re: toggle hide show function not working (code provided)

2007-11-21 Thread Jeff
You can also use $(expr).empty(). On Nov 21, 1:49 pm, mdrisser [EMAIL PROTECTED] wrote: The problem is that .remove() removes the actual element not the text inside of it. This works: $(a.collapse).html((-)); On Nov 21, 10:35 am, FrankTudor [EMAIL PROTECTED] wrote: script

[jQuery] Re: toggle hide show function not working (code provided)

2007-11-21 Thread Jay Fallon
You need to clear your HTML first. remove() does nothing. script type=text/javascript $(document).ready(function(){ $('div.bang').addClass('hide'); $('a.collapse').toggle(function(){ $('div.bang').show(); $('a.collapse').html().append((-));

[jQuery] jQuery and Vista Sidebar Gadgets, do they mix?

2007-11-21 Thread bkothe
Hi. I am new to jQuery and I am trying to create a Vista Sidebar Gadget. I am able to get the gadget to work in IE but when I create the actual gadget and install it on Vista, the jQuery features do not work. I am using Jörn's Accordion which doesn't work in the Gadget. I have then used basic

[jQuery] Two NewBe-Questions about jQuery

2007-11-21 Thread mmaedler
Hello everyone! as mentioned above, Im quite new to jQuery (in fact I'm using it for 3 hours now ;) ). Here are two newbe-questions which both refer to the following code: code $(function(){ $('#fAnfrage').submit(function(){ var inputs = [];

[jQuery] Again on tablesorter and row hovering

2007-11-21 Thread drvillo
Hi all I've changed a table to use tablesorter (+ its pager) instead of server side sorting+paging, so far so good. The last bit that is missing to make it fully functional is the classic hovering highlights effect. I've been reading here and there and I've found no precooked solution, nor I

[jQuery] Re: Superfish - issues with hover links in IE6

2007-11-21 Thread cromeis
It worked! I can't thank you enough for your help Joel! You totally made my day! And thank you Jared for your feedback as well.

[jQuery] Re: Rounded corners-canvas and ie6

2007-11-21 Thread marco
Yes, I ran into the same issue myself. I have not found a solution for this myself. I wonder how they did it on the demo site. (there the issue does not appear) marco On Nov 21, 1:00 pm, polyrhythmic [EMAIL PROTECTED] wrote: I believe curvycorners supports borders, I'm not sure that there's a

[jQuery] Re: Starter

2007-11-21 Thread iPhenom
Thanks a lot for this help :) It's working fine now

[jQuery] Re: Rounded corners-canvas and ie6

2007-11-21 Thread Brett
that's an great effect - first thoughts are how are you generating the bottom border/line? I couldn't track down the code for your corner easily so couldn't get any further. On Nov 22, 8:00 am, polyrhythmic [EMAIL PROTECTED] wrote: I believe curvycorners supports borders, I'm not sure that

[jQuery] Re: Mixing two effects

2007-11-21 Thread Brett
Do these help? http://interface.eyecon.ro/demos/slideshow.html http://www.dzone.com/links/very_nice_jquery_slideshow.html On Nov 21, 3:30 am, Pathos [EMAIL PROTECTED] wrote: Hello everybody, after hearing about JQuery i am now plungin in and i really like the possibilities of jquery. I'm

[jQuery] Re: ajaxContent Major relesase (V 2.0)

2007-11-21 Thread Dave Buchholz - I-CRE8
Andrea, I am trying to implement your plugin but for some reason it will not work for me, I have set up a demo page here: http://www.i-cre8.co.uk/ajaxContent/ but the link takes me straight to the results page rather than pulling the content into the specified div. Why is this happening ?

[jQuery] Simple Table Filter

2007-11-21 Thread rsmolkin
Hi, I've found a bunch of different filters for tables, but I need something much simpler. Can anyone help me out? I am displaying a list of Facilities ordered by State and City, where a facility name, phone, city and state are displayed. All I'd like to do is give the user ability to filter

[jQuery] Re: How to scroll select list ?

2007-11-21 Thread the_ghost
Thanks! It works for select lists. :jumping: Flesler-2 wrote: Something like this? http://jquery.com/plugins/project/ScrollTo Ariel Flesler On 21 nov, 07:52, the_ghost [EMAIL PROTECTED] wrote: How 2 scroll with jquery select? For example i have: select size=3 option

[jQuery] jcarousel thickbox ajax

2007-11-21 Thread jamesQ
Hi, I am loading a text file dynamically with ajax into jcarousel and then using thickbox. It work great except that in thickbox it only loads the number of files that I can scroll to next i.e. there are 55 images in my text file but in thickbox I get: Image 3 of 6 Prev Next Is there a

[jQuery] Re: Edit database rows

2007-11-21 Thread Luciano G. Panaro
Hi, Actually you will need something in the middle, that is, an exposed page (PHP, ASP, whatever) that would act as a proxy of your postgres database. That way, the jquery plugin will be able to access that page when trying to create / edit / update rows. Hope it helps! Luciano. On Nov 21,

[jQuery] .eq(variable) causing problem

2007-11-21 Thread pcadi
Hi, I have the weirdest of bug. If I do: var item1 = 3; $(#+menu+ .itemMenu li).eq(item1).addClass(highlight); Then all the li elements get highlighted. If I do: $(#+menu+ .itemMenu li).eq(3).addClass(highlight); it works fine. How do I use a variable in a jquery query? Thanks in

[jQuery] Re: New Plugin: jQuery Fx Queues

2007-11-21 Thread Luciano G. Panaro
Just to let you guys know, I've just updated the plugin. The functions were renamed and the issue when a queued animation that has a wait time set is stopped (there is a still an issue regarding that when starting and stopping repeatedly, I'll keep on looking at it). Thanks, Luciano. On Nov 21,

[jQuery] Convert to JQuery code

2007-11-21 Thread shapper
Hello, I am mostly an ASP.NET and SQL developer and I have no experience with JQuery. I am starting to use JQuery now and it seems really good. I need to convert a Javascript code to use JQuery. Could someone, please, help me out? The Javascript code: function onUpdating(){ // get

[jQuery] Slide toggle trigger to swap images depending on show hide state

2007-11-21 Thread somnamblst
My slidebar trigger is a tab image that says close/replay. I am trying to figure out how to swap between a close and a replay image depending on whether the slidebar div is up or down. I did find a thread onjButton.js but haven't found any demo examples. script type=text/javascript

[jQuery] does anyone have a latest document PDF

2007-11-21 Thread Fayland Lam
I searched with Google but all are outdated. I'm not running any java or coldfusion. Thanks.

[jQuery] TableSorter plug-in - custom sorting depending on direction?

2007-11-21 Thread RichUncleSkeleton
Here is my page: http://www.doheth.co.uk/db/world/country If you sort some columns (eg GDP) you will notice the blank values appear at the top. However, I want them to appear at the bottom. Initially I created a parser which set the value to Number.MAX_VALUE if it was '-'. But this moves the

[jQuery] Re: Superfish - issues with hover links in IE6

2007-11-21 Thread Joel Birch
On 22/11/2007, cromeis [EMAIL PROTECTED] wrote: It worked! I can't thank you enough for your help Joel! You totally made my day! And thank you Jared for your feedback as well. Great! With responses like that, you will always be most welcome ;) Joel Birch.

[jQuery] Re: Superfish IE7 Error

2007-11-21 Thread Joel Birch
Hi Jenny, It looks like you deleted the change log from the Superfish JS file (which is good) but left the remaining comment unclosed as it is missing a forward slash after the last asterisk. Make the start of that file look like this: /* * Superfish v1.3.2 - jQuery menu widget * * Copyright

[jQuery] Re: Firing off a jQuery action ASAP - before document ready?

2007-11-21 Thread Karl Swedberg
Have you looked at the elementReady plugin? might help. http://jquery.com/plugins/project/elementReady --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Nov 21, 2007, at 1:34 PM, zarino wrote: Hi Andy. Thanks for the suggestion, but I'm not sure it's

[jQuery] Re: TableSorter plug-in - custom sorting depending on direction?

2007-11-21 Thread Christian Bach
Hi Scott, The parser will parse the value inside the table cell and store it's values in a huge array representing the table data. This is done only once per column and sorting direction. So setting a max / min value will only display the right way in one direction. /christian 2007/11/22,