[jQuery] jQuery / Plugin history and callback

2009-09-14 Thread CUT HERE
Hi, I'm working on my own plugin jquery but I have a issue and I don't find any solution. The plugin handles tabs. One main feature about this homemade plugin is to manage static en ajax tabs and an history. When the user click on back or forward button, tabs is reloaded. So I use this plugin fo

[jQuery] Re: Refactoring with JQuery

2007-10-24 Thread Cut
Anyone? On Oct 23, 8:58 pm, Cut <[EMAIL PROTECTED]> wrote: > Hey everyone, thanks for all the help so far. > > I'm slimming my code down with JQuery, and wondered how I would handle > the below situation. > > I generate a dynamic set of each containing

[jQuery] Re: ajax with two html input arrays

2007-10-23 Thread Cut
This works wonderfully, thank you!

[jQuery] Refactoring with JQuery

2007-10-23 Thread Cut
Hey everyone, thanks for all the help so far. I'm slimming my code down with JQuery, and wondered how I would handle the below situation. I generate a dynamic set of each containing a set of , , , like so: -- var newDiv = $(""); $('').keyup( function() { return updateRockButton(

[jQuery] Re: help - Mineral search program

2007-10-22 Thread Cut
So, I just used a standard ajax call with a response object instead of using jquery. This way, in my event function, I could do: : request.onreadystatechange = function() {replaceInputElement(this);}; so that replaceInputElement gets a reference to the calling button, which I can use

[jQuery] ajax with two html input arrays

2007-10-22 Thread Cut
jQuery List, I have 2 form element arrays: -and- The form's size changes at runtime, so the user can enter as many rocks as needed. Therefore, the size of the rockno array and units array are unknown. On the server side, php picks it up: $rockno = $_POST['rockno']; $units = $_POST['units']

[jQuery] Re: help - Mineral search program

2007-10-18 Thread Cut
Thanks Glen. You're a godsend.

[jQuery] help - Mineral search program

2007-10-17 Thread Cut
I'm creating a js/jquery script that will accept a rock, submit the rock to a database via php, and use the xml returned to populate a select list, which will replace the text input. I have the multiple input generation working, database submit working, and I can parse the xml. I can't seem to