comcar
asked on
How to get IE7 to accept a jQuery "name" attribute change on a <FORM>
Sorry for the slightly hazy title.
I'm using jQuery and AJAX to load a page containing multiple DIVs with their own individual content, from various areas of our site. 2 of the DIVs I'm loading pull in some forms, however due to a legacy issue all the forms on the site have the same "name", which is "proDep".
I've used jQuery to change the name of the form...
$('#iDerv form').attr("name", "dervForm");
and Firefox is happy with this and lets me address the 2 forms seperately, "proDep" and "dervForm", but IE just does something wierd that I don't understand.
It now treats "proDep" as a 2 dimensional array, with proDep[0] being "proDep", and proDep[1] being "newName".
I can access all the form fields using "proDep[0][4]" for example, but this is no good as I need to run functions that refer to fields in proDep as a 1d array.
It also then ignores the .append() ; function to add new elements to the form.
Is there a different way to change the name of an element or is this just something that IE can't handle?
I'm using jQuery and AJAX to load a page containing multiple DIVs with their own individual content, from various areas of our site. 2 of the DIVs I'm loading pull in some forms, however due to a legacy issue all the forms on the site have the same "name", which is "proDep".
I've used jQuery to change the name of the form...
$('#iDerv form').attr("name", "dervForm");
and Firefox is happy with this and lets me address the 2 forms seperately, "proDep" and "dervForm", but IE just does something wierd that I don't understand.
It now treats "proDep" as a 2 dimensional array, with proDep[0] being "proDep", and proDep[1] being "newName".
I can access all the form fields using "proDep[0][4]" for example, but this is no good as I need to run functions that refer to fields in proDep as a 1d array.
It also then ignores the .append() ; function to add new elements to the form.
Is there a different way to change the name of an element or is this just something that IE can't handle?
// iDerv DIV hidden on load
$('#iDerv').hide();
...
...
function v3_processModel () {
// looks at fields in first form
var formMake = document.proDep.fjs_make.value;
var formModel = document.proDep.fjs_model.value;
...
...
// loads new content into DIV "iDerv", including another "proDep" form
url = "pageHoldingproDep.cfm?make="+make;
updateElem('iDerv',url);
// reveals the div and changes the form name
$('#iDerv').show();
$('#iDerv form').attr("name","dervForm");
// add new buttons
$('#iDerv form').append('<input type="submit" onClick="return v3_loadOptions();" value="Add Options">');
$('#iDerv form').append('<input type="submit" onClick="return v3_processCalcClick();" value="Calculate">');
return false;
}
ASKER
Thanks hielo but that didn't do it I'm afraid. I've found out a few more things... although it's still got me stumped...
The form name does change, according to the IE Developer toolbar, it shows the name as "dervForm", but using DebugBar or Microsoft Script Debugger's console, if I type in;
"document.proDep[1].innerH TML" - get the HTML for the second form...
"document.dervForm.innerHT ML" - and this throws a null object error!
I read somewhere about someone having similar sorts of troubles with ammending "onClick" values that IE would ignore, something to do with cloning? Anyone got any ideas?!
The form name does change, according to the IE Developer toolbar, it shows the name as "dervForm", but using DebugBar or Microsoft Script Debugger's console, if I type in;
"document.proDep[1].innerH
"document.dervForm.innerHT
I read somewhere about someone having similar sorts of troubles with ammending "onClick" values that IE would ignore, something to do with cloning? Anyone got any ideas?!
If you defining the id name I dont think you have to specifiy that it is a form
$('#iDerv').attr("name","dervForm");
ASKER
The ID is for the containing DIV, as shown in the simplified code snippet. The FORM is a child of the DIV, and I've also tried changing the code to:
$('#iDerv > form').attr("name","dervFo rm");
$('#iDerv > form').attr("name","dervFo
<div id="iDerv">
<form name="proDep"></form>
</div>
// so with this line of code I'm trying to achieve the bottom example
$('#iDerv > form').attr("name","dervForm");
<div id="iDerv">
<form name="dervForm"></form>
</div>
>>document.proDep[1].inner HTML" - get the HTML for the second form...
Correct. That's because you have two forms with the same name.
document.proDep[0].innerHT ML
should give you the first form. As a matter of fact, you can even change the name via:
document.forms[0].name="my Form1";
document.forms[1].name="my Form2";
Correct. That's because you have two forms with the same name.
document.proDep[0].innerHT
should give you the first form. As a matter of fact, you can even change the name via:
document.forms[0].name="my
document.forms[1].name="my
ASKER
I think I see what the problem is now, the normal Javascript code ignores the changes made by jQuery.
So I need to make the changes initially using "document.getElementById.. ." and then refer back to them in the same way, and I can only access the jQuery labelled form "dervForm" if I use jQuery functions to call it.
So is the jQuery/$ object just like a mask for the HTML and JS below? In IE at least, as Firefox is happy for me to jump between the 2.
So I need to make the changes initially using "document.getElementById..
So is the jQuery/$ object just like a mask for the HTML and JS below? In IE at least, as Firefox is happy for me to jump between the 2.
ASKER
Ah no load of nonsense I'm talking.
document.forms[1].name="de rvForm"; - still leads to the same thing, I suppose this is because the page is being loaded with the form, the array of 2 proDeps is created, then I'm trying to mess around with it.
I'm going to try to use REGEX to find "form... name="proDep" and change it for "form...name="dervForm" when it comes back from the AJAX call and before it's written to the page
document.forms[1].name="de
I'm going to try to use REGEX to find "form... name="proDep" and change it for "form...name="dervForm" when it comes back from the AJAX call and before it's written to the page
SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
$('#iDerv form:eq(0)').attr("name","