[jQuery] Re: Autocomplete: Multi-dim JSON array and Custom format

2008-06-18 Thread Shawn
Check out the result method the autocomplete makes available: http://docs.jquery.com/Plugins/Autocomplete/result#handler The data parameter represents the raw data array. OR, you may need to set up the formatResult parameter when initializing the autocomplete (or via the setOptions()

[jQuery] UI - Uploader

2008-06-18 Thread Vincent Majer
Hi, I found a discussion about this site and demos : http://uploader.webunity.nl/jQuery/demo3/ http://docs.jquery.com/UI/Uploader I really like it.. But i can't find any docs on the php file behind the scene.. Neither a link to download this plugin.. If this is a plugin.. ? or a part of

[jQuery] Re: UI - Uploader

2008-06-18 Thread Richard D. Worth
This was an experimental plugin before the 1.0 release. Here are the old files in the svn archive: http://dev.jquery.com/browser/trunk/plugins/ui/uiUpload?rev=2854 The UI Roadmap lists it as a plugin that is still being discussed for inclusion: http://docs.jquery.com/UI/Roadmap - Richard On

[jQuery] Re: UI - Uploader

2008-06-18 Thread Vincent Majer
Is there a problem with this ? Not to use in a real site ? It's seems to be the most advanced uploader i've seen.. i can't understand why it's not still included in UI.. And neither in the roadmap.. only in discussion .. ? thanks anyway for this informations Richard D. Worth a écrit :

[jQuery] Re: UI - Uploader

2008-06-18 Thread Vincent Majer
And.. on the demo site, the revision is 4660.. And in the svn, only 2854 ? Richard D. Worth a écrit : This was an experimental plugin before the 1.0 release. Here are the old files in the svn archive: http://dev.jquery.com/browser/trunk/plugins/ui/uiUpload?rev=2854 The UI Roadmap lists it

[jQuery] Re: UI - Uploader

2008-06-18 Thread Richard D. Worth
I haven't seen progress or discussion of the plugin in many months. As to whether or when it might be included in UI, it could depend on any number of factors (maintainer, architecture, maturity/stability, dependencies, fit with project plans/goals, demand). I don't know in this case. - Richard

[jQuery] Re: UI - Uploader

2008-06-18 Thread Richard D. Worth
Here's the latest revision I could find: http://dev.jquery.com/browser/trunk/ui/experimental/Uploader%20source?rev=4573 I didn't link to that one earlier since you mentioned you were looking for PHP files and 2854 is the last change that still has PHP files. My best guess is that the reference

[jQuery] Re: UI - Uploader

2008-06-18 Thread Vincent Majer
ok, thanks for all this, richard, i'll try to implement it anyway.. and i'll see.. Richard D. Worth a écrit : Here's the latest revision I could find: http://dev.jquery.com/browser/trunk/ui/experimental/Uploader%20source?rev=4573 I didn't link to that one earlier since you mentioned you

[jQuery] Re: Help with tabsLoad

2008-06-18 Thread Klaus Hartl
I think you're now running into the common Ajax rebinding problem. You may want to read the FAQ entry on this: http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_stop_working_after_an_Ajax_request.3F --Klaus On 18 Jun., 00:09, keny [EMAIL PROTECTED] wrote: Hi, Thanks now

[jQuery] Re: Adding the dialog function dynamically to each li element

2008-06-18 Thread Dan
Thanks Jason for the help so far. That solved the problem I was having. I also added :first to a couple of things to make it work even better. Now for some reason, the content of the dialog is not being displayed. From what Firebug is showing, append or dialog has taken the html and messed it

[jQuery] Re: cluetip question: is it possible to have tabs inside a cluetip?

2008-06-18 Thread Skurmedel
I've done some tool tip-related stuff myself recently. I found it easiest to have an initially hidden element with absolute positioning somewhere. Using events I display the tooltip next to the element using jQuery.offset, jQuery.height and jQuery.width. On Jun 18, 1:36 am, se [EMAIL PROTECTED]

[jQuery] Re: Adding the dialog function dynamically to each li element

2008-06-18 Thread Dan
I've done a little messing around and have found that something is wrong with: $(this).append( div id=' + title + ' class='edit_dialog' ).append( $(.edit_accordion) ).append( / div ); It only inserts the div tag and skips or looses the middle append data. The div tag is also converted into a

[jQuery] slideDown and slideUp are jerky

2008-06-18 Thread JohnieKarr
Hello, I have a site: www.lovinggodlovingyouonline.com that the menu is jerky in IE6 7 on xp. FF is really smooth. I would prefer onmouseover, but I changed my code to onmouseclick to help remedy the problem, but it did not work. Does anyone have any suggestions regarding this? My jquery

[jQuery] Re: li:gt(...) keeps counting to the next list

2008-06-18 Thread Panos
Ah, got it! Thanks Karl! On Jun 18, 2:27 am, Karl Rudd [EMAIL PROTECTED] wrote: The selector ul li selects _all_ LI elements in all UL elements, and puts them in the same collection. So the collection/array will look like this:   lialpha/li, libeta/li, ligamma/li, lidelta/li If you want

[jQuery] tablesorter: Glue two rows together

2008-06-18 Thread melwood
Hi, is it possible to glue two table rows together, so that when the first row is sorted, the second row always comes next? Michael

[jQuery] [validate] addWrapper bug

2008-06-18 Thread Cao Le Thang Long
Any suggestion, Jorn? On Jun 16, 10:11 am, Cao Le Thang Long [EMAIL PROTECTED] wrote: Hi, I'm currently using the validation plugin. However I ran into some problems. When I use div (or even ul) as a wrapper, if there is a validation error and I correct it, the whole form disappear, in

[jQuery] Re: cluetip question: is it possible to have tabs inside a cluetip? (SOLVED)

2008-06-18 Thread se
On Jun 18, 1:36 am, se [EMAIL PROTECTED] wrote: here's what i'm trying to achieve, a tooltip that looks like this http://wa5190.fv15.de/transfer/tips/ and stays open until closed (no close button there atm). is this possible, and if so -- how? i tried to rebuild this into the page from where

[jQuery] Re: Layout manager

2008-06-18 Thread Stefan Sturm
Hello, 2008/6/17 Jquery user - z [EMAIL PROTECTED]: in jqueryUI, you com find something called splitpane in the dir jquery.ui-1.5\demos\real-world\splitpane\index.html yes, but this is just a demo for the resizer. I saw in the Roadmap, that a LayoutManager is planed for Version 1.7 :-) Is

[jQuery] About events and memory

2008-06-18 Thread Skurmedel
Hi, I've been using jQuery for a couple of projects and I love it, it really quells the pain of traversing the HTML. However, I wonder if jQuery unbinds the events on page unload, to avoid memory leaks. I don't see it being mentioned anywhere on the main site. Thanks in advance.

[jQuery] overflow:visible; during animate?

2008-06-18 Thread gpbmike
Hi, is there an easy way to override the overflow:hidden; that animate() applies during the animation? I'd like my overflow to be visible. :) I looked around this site and the web in general and the only thing I found was a patch to the animate() method. I'd like to do it without messing with

[jQuery] File operation...

2008-06-18 Thread kiran
Hi Friends, I am very new to JQuery, infact Iam checking if we can use JQuery for our requirements. In regards to that I have couple of queries. 1. Can we do file operations using JQuery ? For instance if I make some modifications to DOM/HTML, can I save it back to the disk? 2. Can I use

[jQuery] Re: Autocomplete: Multi-dim JSON array and Custom format

2008-06-18 Thread Mike Nichols
I Have an plugin called 'cascade' that does this using templating very easily here http://plugins.jquery.com/project/cascade or consider the very lightweight autocomplete here http://plugins.jquery.com/project/jq-autocomplete which also uses the templating plugin. I hopped to this autocomplete

[jQuery] Re: cluetip question: is it possible to have tabs inside a cluetip?

2008-06-18 Thread JohnieKarr
I can't remember the name of it, but there is a tool tip plug-in that allows the plug-in to be another page. I can't remember if you can take your mouse inside the tooltip or not. I'm sure it can be made to do so. I use it at work. so I will get the name of it in the morning for you and post.

[jQuery] onRighClick method?

2008-06-18 Thread Andy Matthews
Is there now, or are there any plans to have, an onRightClick method in jQuery? I found a ContextMenu plugin but it was last updated almost a year ago. Alternately, are there any other plugins out there that would offer ContextMenu support for right clicking?

[jQuery] Re: Adding the dialog function dynamically to each li element

2008-06-18 Thread Richard D. Worth
Each append call expects an entire valid html element. You need to build up the string, then append it in one go, or create the entire div element ( div ../div ) then select that div and do a separate append to it for its content. Examples (untested): $(this).append( 'div id=' + title + '

[jQuery] Re: File operation...

2008-06-18 Thread Liam Byrne
kiran wrote: Hi Friends, I am very new to JQuery, infact Iam checking if we can use JQuery for our requirements. In regards to that I have couple of queries. 1. Can we do file operations using JQuery ? For instance if I make some modifications to DOM/HTML, can I save it back to the disk?

[jQuery] Re: xml parsing error

2008-06-18 Thread koko
Thanks but it's not working !!! I'm using IE7 for testing , maybe in IE6 it's wroking any solution?

[jQuery] Re: onRighClick method?

2008-06-18 Thread Isaak Malik
The reason that they don't implement this directly into the jQuery library is probably because of the lack of support by the Opera browser. Also the contextmenu plugin may be a little old but it still works On Wed, Jun 18, 2008 at 1:33 PM, Andy Matthews [EMAIL PROTECTED] wrote: Is there now,

[jQuery] Re: Resetting validation rules dynamically

2008-06-18 Thread kapowaz
Alright, I've found the bug with the above code (the callback function itself doesn't return true or false; only the anonymous method inside it does), and corrected it. However I've since stumbled upon another problem; if any field uses a callback method to determine required status, but *also*

[jQuery] Re: onRighClick method?

2008-06-18 Thread Andy Matthews
Ahh... Opera doesn't support it? Interesting. I'll take a look at the ContextMenu plugin, but it's a shame that jQuery doesn't offer a rightclick method. Besides...who really cares about Opera? :) _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Isaak Malik

[jQuery] Re: tablesorter: Glue two rows together

2008-06-18 Thread Dan G. Switzer, II
Michael, is it possible to glue two table rows together, so that when the first row is sorted, the second row always comes next? Awhile back, I modded the tablesorter plug-in to do just that: http://blog.pengoworks.com/index.cfm/2008/3/28/Finished-jQuery-Tablesorter-m

[jQuery] Re: CYCLE PLUGIN -- Creating a Realtime Status/Progress Bar

2008-06-18 Thread Joe
After loads of reading on the single-threaded nature of javascript and the inconsistencies with timers ( http://ejohn.org/blog/how-javascript-timers-work/ ), I have come to realize that a progress bar (on it's own setInterval() ) and a cycle (on it's own interval) being in sync with each other

[jQuery] Re: xml parsing error

2008-06-18 Thread Sam Sherlock
well for meit works in ff3, ff2, ie6, ie7, ie8b1 and opera 8 and opera 9.5b also safari 3(windows xp) I get two alert pop up first 0-1 then 1-2 what is not working for you? double check that you have no errors syntax / mark up every time I try this it works fine - whatever browser I opt for.

[jQuery] jQuery best practices

2008-06-18 Thread Estevão Lucas
Hi, I'd like to know if is there a document, article, or anything that a can show for the JavaScripts developers here in the company talking about best practices; Best regards

[jQuery] Re: onRighClick method?

2008-06-18 Thread Aaron Heimlich
The ContextMenu plugin you're referring to ( http://www.trendskitchens.co.nz/jquery/contextmenu/) works by listening for the contextmenu event, e.g. $(this).bind('contextmenu', function(e) { // do cool stuff... }); We use it pretty heavily (although with some mods to allow for

[jQuery] prevent more than one submit in ajaxsubmit

2008-06-18 Thread Sebastián V. Würtz
Guys I need some litle help. var v = jQuery(#send_form).validate({ . .. }, submitHandler: function(form) { jQuery(form).ajaxSubmit({ dataType: json, success: process_result }); } });

[jQuery] New jQuery Plug-in: Multicolumn Dropdown

2008-06-18 Thread Dan G. Switzer, II
Awhile back I blogged about a plug-in that my company was planning on releasing called mcDropdown (multicolumn dropdown.) Well, the plug-in was officially released today: http://www.givainc.com/labs/mcdropdown_jquery_plugin.htm If you like the plug-in, feel free to digg it:

[jQuery] Re: Which grid?

2008-06-18 Thread Rey Bango
I'm sure they'd be interested in something like that but the UI team is stretched thin as it is. So hopefully others will step in to contribute something like a comprehensive grid control that can be included in jQuery UI. Rey jQuery Project Team R. Rajesh Jeba Anbiah wrote: On Jun 17,

[jQuery] Re: onRighClick method?

2008-06-18 Thread Andy Matthews
Hrm... I can't find that contextMenu in the API on Remy's website. Is it just missing? is it listed under something else? _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Aaron Heimlich Sent: Wednesday, June 18, 2008 10:10 AM To: jquery-en@googlegroups.com

[jQuery] Re: New jQuery Plug-in: Multicolumn Dropdown

2008-06-18 Thread Rey Bango
This plugin is HOT Dan. Rey Dan G. Switzer, II wrote: Awhile back I blogged about a plug-in that my company was planning on releasing called mcDropdown (multicolumn dropdown.) Well, the plug-in was officially released today: http://www.givainc.com/labs/mcdropdown_jquery_plugin.htm If you

[jQuery] Re: New jQuery Plug-in: Multicolumn Dropdown

2008-06-18 Thread Dan G. Switzer, II
Thanks! I think it's a pretty unique approach and haven't really seen anything like it. We use this control for some really large hierarchical trees of data and it works very well. Generally the tree depth only goes 3 or 4 levels deep, but many of the branches have over 20 items. The

[jQuery] Re: New jQuery Plug-in: Multicolumn Dropdown

2008-06-18 Thread Josh Nathanson
Very nice! One small issue...if I click in the main part of the dropdown, rather than on the down arrow, I can't select any options with the mouse. This is a little different than a native select control, where you can click anywhere on it. -- Josh - Original Message - From:

[jQuery] Re: New jQuery Plug-in: Multicolumn Dropdown

2008-06-18 Thread Scott Sauyet
R. Rajesh Jeba Anbiah wrote: Dan G. Switzer, II [EMAIL PROTECTED] wrote: Awhile back I blogged about a plug-in that my company was planning on releasing called mcDropdown (multicolumn dropdown.) Well, the plug-in was officially released

[jQuery] Re: New jQuery Plug-in: Multicolumn Dropdown

2008-06-18 Thread Tony
Dan, Congratulations for this plugin. It is very usefull. Some recommendations from me. It will be great if not only unordered list is supported - I mean a XML with ajax call. 70% of information is in databases. We can easy construct query which can return a well structured XML. Moreover loading

[jQuery] credit card validation UK

2008-06-18 Thread spenoir
I'm using the validation plugin for jquery on our e-commerce site. I was told that a large percentage of users were dropping out on our payment page. In the UK card numbers are of the format so this is naturally how users will type them in. Basically add a space in to the

[jQuery] Re: Reversing slideDown/slideUp behavior

2008-06-18 Thread fallingandlaughing
Thanks, Andrea, for the tutorial link. Looks like I might need to have a go at writing my first custom animation! Isaak, the slideToggle method works fine when you want the element to reveal itself by sliding down and hide itself by sliding up; I'm trying for an upward reveal and a downward

[jQuery] Re: onRighClick method?

2008-06-18 Thread Isaak Malik
Actually, it's not that Opera doesn't support it as it has support for right click events but is disabled by default and context menus won't work as good as on firefox and yes for once also IE because just Opera discourages the use of context menus. Dangerous quote by Andy Matthews:

[jQuery] Re: onRighClick method?

2008-06-18 Thread Isaak Malik
That's the one I last tested in Opera 9.5 because I was also looking for such a plugin and unfortunately it's not even working. On Wed, Jun 18, 2008 at 5:10 PM, Aaron Heimlich [EMAIL PROTECTED] wrote: The ContextMenu plugin you're referring to (

[jQuery] Does jquery's ajax method's identify requests as being ajaxed

2008-06-18 Thread fambi
What I mean to say is, do the native jquery ajax methods append any parameters that can inform our server side scripts that the request was submitted using ajax? (e.g. ajax=1) If not, what could be done to implement this so that we don't need to repeat ourselves on each and every form? Thanks

[jQuery] focus doesn't seem to be working in FF3

2008-06-18 Thread Stinkbug
I have the following line in a login form. Focus doesn't seem to be working at all. It worked previously before upgrading to FF3. And it appears to be working in IE 7. I suppose it could be FF3, but just wanted to let you guys know, just in case. $(#UserEmailAddress).focus();

[jQuery] Re: New jQuery Plug-in: Multicolumn Dropdown

2008-06-18 Thread Isaak Malik
This plugin looks very interesting, how is the browser support? On Wed, Jun 18, 2008 at 5:31 PM, Dan G. Switzer, II [EMAIL PROTECTED] wrote: Awhile back I blogged about a plug-in that my company was planning on releasing called mcDropdown (multicolumn dropdown.) Well, the plug-in was

[jQuery] Re: hover flickering, snow storm pixels on JPGs (beginner problem)

2008-06-18 Thread Isaak Malik
The IE 6 flickering bug might be solved with this (please in the HEAD): !--[if lt IE 7]script type='text/javascript' try {document.execCommand('BackgroundImageCache', false, true);} catch(e) {} /script![endif]-- If not then your only other option is hope that your visitors will have Check for

[jQuery] Loading google maps dynamically

2008-06-18 Thread lamy
Hey guys! I just startet using jQuery a couple days ago - it totally rocks! Now, I want to give people who write in my blog the opportunity to add some google maps stuff. So I have a div - element which can be shown or hidden by pressing a button. I want google maps to load ONLY when the button

[jQuery] Re: New jQuery Plug-in: Multicolumn Dropdown

2008-06-18 Thread weegekid
Nice Dan. That's fantastic. On Jun 18, 11:31 am, Dan G. Switzer, II [EMAIL PROTECTED] wrote: Awhile back I blogged about a plug-in that my company was planning on releasing called mcDropdown (multicolumn dropdown.) Well, the plug-in was officially released

[jQuery] Re: tablesorter: Glue two rows together

2008-06-18 Thread CL (Ciu Loeng) Lam
Great! 2008/6/18 Dan G. Switzer, II [EMAIL PROTECTED]: Michael, is it possible to glue two table rows together, so that when the first row is sorted, the second row always comes next? Awhile back, I modded the tablesorter plug-in to do just that:

[jQuery] Basic newbie question - ''Object doesn't support this property or method

2008-06-18 Thread weegekid
Hi All, I'm just starting out trying to learn JQuery and I have a very Newbie question. I've tried to use the following code to get the link to change the span text red but get an 'Object doesn't support this property or method' error when I click the link: --code-- script language=javascript

[jQuery] How can I make jquery work with Konquerer?

2008-06-18 Thread ryy705
Hello, I am using konqeror 3.5.8 in unbuntu. I can't seem to get any jquery to work in Konqueror. Is there a setting that I have to change to make it recognize it? Thank you in advance. -- View this message in context:

[jQuery] Re: Is there a way to use the css function with $(document) directly?

2008-06-18 Thread Brian J. Fink
Well, I was about to accuse you of a design flaw, but when I followed the examples in the demo page, I discovered the right way, and it works perfectly, even when there's more style tags than one. I still say it's a bit awkward. And no, they are not chainable, but if you make the rule object an

[jQuery] Re: New jQuery Plug-in: Multicolumn Dropdown

2008-06-18 Thread CL (Ciu Loeng) Lam
It looks so great :) Thanks! 2008/6/18 Dan G. Switzer, II [EMAIL PROTECTED]: Awhile back I blogged about a plug-in that my company was planning on releasing called mcDropdown (multicolumn dropdown.) Well, the plug-in was officially released today:

[jQuery] Tablesorter plugin and zebra striping

2008-06-18 Thread Ken
I have the following in my $(document).ready: $(document).ready(function() { $(.zebra tr:not([th]):even).addClass(even); $(.zebra tr:not([th]):odd).addClass(odd); $(table#sorttable).tablesorter(); )}; This allows my table to sort columns by clicking on the column headers and works great.

[jQuery] Add script dynamically?

2008-06-18 Thread lamy
Hey there! This might be a double post, but I can't find my recent entry regarding the same topic! So, once again :) When I try to load google maps dynamically with $.getscript() with a click on a button, the script tries to redirect me for some reason. What am I doing wrong? Please help, I've

[jQuery] Sorting table which consists two sets of data

2008-06-18 Thread Srini
Hi, I have a table with two sets of data i.e. first 5 rows are active and the rest of the rows are inactive. When I am sorting I need to sort active records (5 records) and display as the first five records and sort the inactive records and start displaying from 6th record. Does JQuery help in

[jQuery] Re: Basic newbie question - ''Object doesn't support this property or method

2008-06-18 Thread Josh Nathanson
$('span').addclass('red'); addClass has to be camel case - javascript is case-sensitive. -- Josh - Original Message - From: weegekid [EMAIL PROTECTED] To: jQuery (English) jquery-en@googlegroups.com Sent: Wednesday, June 18, 2008 7:48 AM Subject: [jQuery] Basic newbie question -

[jQuery] Re: Does jquery's ajax method's identify requests as being ajaxed

2008-06-18 Thread Aaron Heimlich
jQuery (and many other libraries) adds a custom header to the HTTP request: X-Requested-With: XMLHttpRequest Your server-side scripts can look for this header to determine if the request was sent via Ajax or not. On Wed, Jun 18, 2008 at 9:21 AM, fambi [EMAIL PROTECTED] wrote: What I mean to

[jQuery] Re: New jQuery Plug-in: Multicolumn Dropdown

2008-06-18 Thread Dan G. Switzer, II
On Jun 18, 8:31 pm, Dan G. Switzer, II [EMAIL PROTECTED] wrote: Awhile back I blogged about a plug-in that my company was planning on releasing called mcDropdown (multicolumn dropdown.) Well, the plug-in was officially released today:http://www.givainc.com/labs/mcdropdown_jquery_plugin.htm

[jQuery] Re: New jQuery Plug-in: Multicolumn Dropdown

2008-06-18 Thread Dan G. Switzer, II
It's been tested pretty extensively in Firefox 2 3 and IE 6 7 (because these are the only browsers used by our userbase.) -Dan _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Isaak Malik Sent: Wednesday, June 18, 2008 11:46 AM To:

[jQuery] Re: onRighClick method?

2008-06-18 Thread Andy Matthews
I was being somewhat tongue in cheek. I know that many developers use Opera, but arguably Opera is a non-browser with ~1% of the market. Anyway...I'm all for supporting multiple browsers, but we don't even test in Opera, in fact I've never tested in Opera for any site I've ever created. I've

[jQuery] Remote validation of a telephone number using validate.js

2008-06-18 Thread cryptid
I am using Jörn's validation plugin to validate a form and I want to validate a telephone number against a database using the remote function. The telephone number is in the format 999- and it is being passed to my database as a calculated number instead of as a string. Does anyone know how I

[jQuery] h1length required/h1 response when using .post

2008-06-18 Thread cfdvlpr
Has anyone else noticed this response? What's going on here? Below is the code that I use to report javascript errors to me. And, occasionally, I'll notice this response in Firebug for the post to the /javascript/emailError.cfm page. script type=text/javascript onerror =

[jQuery] Opera 9.5 freaking out with Cycle Plugin

2008-06-18 Thread macgregor
I have a product gallery that uses the cycle plugin to go through some products. It has worked fine in all browsers but I tried the site today with Opera 9.5 and the images that are normally cycled through are being added to another div (that is created with jquery to bring in some stats with an

[jQuery] Re: Tablesorter plugin and zebra striping

2008-06-18 Thread aquaone
Tablesorter comes with a zebra-striping widget. $(table).tablesorter({ widgets: ['zebra'] }); stephen On Wed, Jun 18, 2008 at 6:34 AM, Ken [EMAIL PROTECTED] wrote: I have the following in my $(document).ready: $(document).ready(function() { $(.zebra tr:not([th]):even).addClass(even);

[jQuery] jQuery Auto Unescapes Data

2008-06-18 Thread JeffS
Greetings, I have come across an issue which I have not been able to solve directly. The situation I have is that I have an xml file stored in a backend database which I would like to retrieve and display the contents -exactly- as it is stored in the database. The text comes back correctly from

[jQuery] Re: Tablesorter plugin and zebra striping

2008-06-18 Thread Carl Von Stetten
Ken, Tablesorter has a zebra capability built right in through the zebra widget - see the docs for the tablesorter plugin. It will automatically redo the striping after each sort. You can change your code to: $(document).ready(function() { $(table#sorttable).tablesorter({widgets:

[jQuery] jEditable and .load

2008-06-18 Thread Philip Brown
I have a bit of code that uses jEditable to do inline editing of the content. An additional jEditable content block appears just below the last entry to allow for more data to be entered. Here is the issue: I need to refresh the div that this information is contained in. If I use .load, the

[jQuery] Debugging $.getScript scripts

2008-06-18 Thread ajpiano
Anyone have a clever method for doing step-debugging on scripts fetched via $.getScript() ? In firebug, if you add a debugger; to a remotely fetched script, Firebug shows the variables in the watch tab, etc, but it doesn't actually pull the script into the script window (it shows another page,

[jQuery] Using Dimensions Library

2008-06-18 Thread eric
I apologize if this is a dupe- but would this be the way to use the dimensions library. I am having a tough time positioning elements and I can't seem to find too many online demos. $(#insertLink).click(function(){ $(#insertDiv).offset($(this).offset());

[jQuery] [Tooltip] - Hovering on tr

2008-06-18 Thread dfiller
I'm using the tooltip plugin by Mr. Zaefferer and trying to get it to appear on the hover event of a table row. It works absolutely fine in Firefox, but of course IE won't display the tooltip. I know the plugin is setup correctly because when I move it to another element, it works fine in both

[jQuery] Re: Adding the dialog function dynamically to each li element

2008-06-18 Thread Dan
I've done some more messing around and came up with a solution that worked: $(this).append( div id=' + title + ' class='edit_dialog'/ div ); $(.edit_accordion:first).clone().appendTo( $(# + title) ); Thanks for all the help Jason and Richard. PROBLEM SOLVED!

[jQuery] Re: Adding the dialog function dynamically to each li element

2008-06-18 Thread Dan
Thanks Richard, I didn't know that it wanted an entire valid html element. This code works: $(this).append( div id=' + title + ' class='edit_dialog'/ div ); $(# + title).clone().append( TEST CONTENT ); but when I replace TEST CONTENT with with the edit_accordion class, it doesn't work. I tried

[jQuery] Re: New jQuery Plug-in: Multicolumn Dropdown

2008-06-18 Thread Isaak Malik
I hope that it also works in Opera, thank you for the information. On Wed, Jun 18, 2008 at 7:34 PM, Dan G. Switzer, II [EMAIL PROTECTED] wrote: It's been tested pretty extensively in Firefox 2 3 and IE 6 7 (because these are the only browsers used by our userbase.) -Dan

[jQuery] jqGrid save on leave

2008-06-18 Thread maryspt
hi is there any way to save the edited data without when user leaves the edit mode by selecting other row? i can't save last row on every onSelectRow, because it'd be called even when user clicked Escape last time

[jQuery] Jcarousel and Thickbox

2008-06-18 Thread marmo79
Hello and sorry for my poor English. I'm using the plugin Jcarousel (http://sorgalla.com/jcarousel/) for a Gallery with more than 100 images;so I've decided to load the items with Ajax, using the author's 'best pratice' example. Now I must use the plugin Thickbox to open the bigger sizes

[jQuery] Re: prevent more than one submit in ajaxsubmit

2008-06-18 Thread eldersoto
You can Block the page: http://www.malsup.com/jquery/block/#page Saludos. Don Quijote de Nicaragua. Elder Soto quot;Sebastián V. Würtzquot; wrote: Guys I need some litle help. var v = jQuery(#send_form).validate({ . .. },

[jQuery] [validate] How to integrate validation with masking?

2008-06-18 Thread shapper
Hello, I am validating a form but one of the fields has a mask: 99-99- 99:99:99 This is: Day-Month-Year Hour:Minutes:Seconds How can I integrate my validation with my mask? I am using: http://digitalbush.com/projects/masked-input-plugin

[jQuery] Re: Tablesorter plugin and zebra striping

2008-06-18 Thread Alex
Hi Ken, luckily for us the brilliant Christian Bach created a widget system for Tablesorter so when you initialize your table use this instead $(table#sorttable).tablesorter({widgets:[zebra]}); this will automatically apply a class of odd and even so you just have to style it! There are some

[jQuery] Quick question about dimensions

2008-06-18 Thread eric
I've recently been exploring the jquery library and I apologize if this is a silly question. But could someone post a simple example of using the dimension library to position a div directly below a link. I have tried something like this: $(#insertLink).click(function(){

[jQuery] Re: Loading google maps dynamically

2008-06-18 Thread Hamish Campbell
It looks like you're getting the script ok, but there is other stuff you need to do to create a google map. There are a couple of good jQuery googlemap plugins (eg, jMaps) So you'd do something like this: $(#togglegmaps).toggle( function(){ $.getScript(http://maps.google.com/maps?

[jQuery] Access multiple URLs with ajax

2008-06-18 Thread hubbs
I am wondering if it is possible to use the jQuery .ajax() call to access multiple URLs right after another. When I am wanting to do, is have a list of items, each of which has a check box which is an option to delete the item. If the box is checked, and the submit button clicked, I would like

[jQuery] Re: Is there a way to use the css function with $(document) directly?

2008-06-18 Thread Ariel Flesler
Well, I was about to accuse you of a design flaw, but when I followed the examples in the demo page, I discovered the right way, and it works perfectly, even when there's more style tags than one. I still say it's a bit awkward. I really don't understand why is it awkward. It behaves JUST like

[jQuery] Re: About events and memory

2008-06-18 Thread Ariel Flesler
Yes, it is done. Cheers -- Ariel Flesler http://flesler.blogspot.com/ On 18 jun, 05:30, Skurmedel [EMAIL PROTECTED] wrote: Hi, I've been using jQuery for a couple of projects and I love it, it really quells the pain of traversing the HTML. However, I wonder if jQuery unbinds the events on

[jQuery] Re: Quick question about dimensions

2008-06-18 Thread Josh Nathanson
The offset() method is only gettable, not settable. You might need to do something like this: $(#insertLink).click(function(){ var offset = $(this).offset(); $(#insertDiv).css({ top: offset.top, left: offset.left }).toggle(); }); -- Josh - Original Message - From: eric [EMAIL

[jQuery] Re: JS Loader w/ Plugin Support??

2008-06-18 Thread Ariel Flesler
I'm not what you mean exactly. This plugin handles on demand loading of jQuery plugins. http://plugins.jquery.com/project/Plugin Cheers -- Ariel Flesler http://flesler.blogspot.com/ On 18 jun, 12:56, Seth - TA [EMAIL PROTECTED] wrote: With JSLoader being around and the recent announcement by

[jQuery] Re: JS Loader w/ Plugin Support??

2008-06-18 Thread Ariel Flesler
Oops.. I think you meant google hosting plugins ? Dunno about that... -- Ariel Flesler http://flesler.blogspot.com/ On 18 jun, 12:56, Seth - TA [EMAIL PROTECTED] wrote: With JSLoader being around and the recent announcement by Google to load JS libraries is there any word on plugin support? I

[jQuery] Re: How can I make jquery work with Konquerer?

2008-06-18 Thread Ariel Flesler
Konqueror is not supported by jQuery. http://docs.jquery.com/Browser_Compatibility Cheers -- Ariel Flesler http://flesler.blogspot.com/ On 18 jun, 10:17, ryy705 [EMAIL PROTECTED] wrote: Hello, I am using konqeror 3.5.8 in unbuntu.  I can't seem to get any jquery to work in Konqueror.  Is

[jQuery] Re: Using Dimensions Library

2008-06-18 Thread Ariel Flesler
offset() is only for getting, not setting the offset. $(#insertLink).click(function(){ $(#insertDiv) .css('position','absolute') .css( $(this).offset() ) .toggle(); }); This should do, haven't tested. Cheers -- Ariel Flesler http://flesler.blogspot.com/ On 18 jun,

[jQuery] Back button functionality?

2008-06-18 Thread Evil Otto
I've been trying to solve the back button problem with jQuery. I've run into a couple of .history libraries, but nothing that seems to work with jQuery 1.2.x. Any suggestions or approaches to fixing this would be welcome.

[jQuery] how can I register an event handler as the first one to be executed for that event?

2008-06-18 Thread MarcS
Hi, I'm looking for a way to register an event handler for the submit event of a form as the first one to be executed. nyroModal, a lightbox like plugin I'm using registered its event handler on this form already but I need my custom one to be executed before the one from nyromodal. Is there

[jQuery] Re: New jQuery Plug-in: Multicolumn Dropdown

2008-06-18 Thread Adam
Great plugin, Dan. Quick bug report: if I go down three levels (by using the first option) and the mouse off of the third out to the left, the 3rd level stays while I attempt to navigate to another option. I'm in FF3 on a Mac. Adam On Jun 18, 11:31 am, Dan G. Switzer, II [EMAIL PROTECTED]

[jQuery] Re: Loading google maps dynamically

2008-06-18 Thread lamy
Hey there! Yeah, that's pretty obvious - and I already use a plugin from http://olbertz.de/blog/?p=jquery_googlemaps. The only problem is - as I said- that I am being redirected to the script... On 18 Jun., 22:25, Hamish Campbell [EMAIL PROTECTED] wrote: It looks like you're getting the

[jQuery] Re: [autocomplete] tab issue with autcomplete plugin

2008-06-18 Thread Carl Von Stetten
Jörn, I have made extensive use of the autocomplete plugin for my intranet site. I just downloaded the updated version from the trunk (changelog shows it as 1.0.1, the js file lists the build as 5329). I still have the tab order problem. Carl Jörn Zaefferer wrote: Yes, that should be

  1   2   >