[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

7.0

How to get IE7 to accept a jQuery "name" attribute change on a <FORM>

Asked by comcar in Dynamic HTML (DHTML), JavaScript, Internet Explorer Web Browser

Tags: Javascript, jQuery, Firefox 2.0, IE7

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?
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
// 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;
}
 
Related Solutions
Keywords: How to get IE7 to accept a jQuery "n…
 
Loading Advertisement...
 
[+][-]06/18/08 01:40 AM, ID: 21811051Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zones: Dynamic HTML (DHTML), JavaScript, Internet Explorer Web Browser
Tags: Javascript, jQuery, Firefox 2.0, IE7
Sign Up Now!
Solution Provided By: comcar
Participating Experts: 2
Solution Grade: A
 
[+][-]06/13/08 07:16 AM, ID: 21779078Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]06/13/08 07:54 AM, ID: 21779557Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06/13/08 08:00 AM, ID: 21779643Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]06/13/08 08:18 AM, ID: 21779854Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06/13/08 08:34 AM, ID: 21780001Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]06/13/08 08:47 AM, ID: 21780133Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06/13/08 09:00 AM, ID: 21780264Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06/13/08 10:22 AM, ID: 21780940Assisted Solution

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 30-day free trial to view this Assisted Solution or ask the Experts your question.

 
 
Loading Advertisement...
20091118-EE-VQP-93 / EE_QW_2_20070628