Looking for something like:
$("input:radio:checked").previous("name", "original_name").attr("name","new_name");
I tried a few different seen around here but mostly get the error: Object Expected
Any help is appreciated.
|
Looking for something like:
I tried a few different seen around here but mostly get the error: Object Expected Any help is appreciated. |
|||||||||||||||
|
|
As Ben S wrote in the comment to your original question, why do you need to change the name? Let's say you have
If user selects 'radioChoice1' and clicks submit, browser will send myRadio=radioChoice1Value to your CGI script. You can process this as you desire. In case you insist on changing the name attribute, I am not sure what is the 'previous' method in your code. Can you try,
And see if it works? I can imagine that there could be cross browser problems if you try to change the name attribute. You can create a hidden input and store the name of the radio button selected by the user.
EDIT: Please post your HTML so that I can tell you what kind of values will be posted to CGI. For example if you have
If user clicks on the first radio button 'buy', then in your CGI script value for 'transactionType' will be 'buy'. |
|||||||
|
|
I agree with the others that there is a better solution than to rename the input. Having said that, and to answer your original question - I suggest that you assign ids to your radio inputs, and then use this code:
I don't understand your use of .previous() - I can't find it in the jQuery documentation. |
|||
|
|
|
Here's a jQuery script that does the job requested. I'm using it to rename all the input=text fields on a form. Though I'm not doing anything with radio or checkbox, I added the relevant case statements. Insert your radio/checkbox transforms as needed.
Call this method on a DOM element. Myself, I'm making a clone of a div within a form. The div has lots of text fields. I get the base element like so.
It runs fine in both IE 8.x and Firefox 3.x |
||||
|
|