merlyn2450
Programmer
I'm having issues with the IE 5.2 for Mac and I need some advice.
I have 2 frames. On the top frame, named nav, I am using ASP to populate 3 <select>'s. Each select is in its own form. When the page loads, "nav" has a single <select> with categories. On load the bottom frame, named view, points to an empty page (blank.asp).
When I select an item from the category <select>, I call the function submitCategories() -- like so:
<select name="category" onChange="submitCategories()">
Herein lies the problem. My first task is to launch a page in the bottom frame with details about the category. Next, I send new data to the top frame to query the sub-categories.
The function looks like:
function submitCategories() {
document.forms.categoryFrm.action = 'a_rent6.asp';
document.forms.categoryFrm.target = 'view';
document.forms.categoryFrm.submit();
document.forms.categoryFrm.action = 'a_rent1.asp';
document.forms.categoryFrm.target = 'nav';
document.forms.categoryFrm.submit();
}
This function works properly in IE for Windows and Netscape, but not in IE for Mac. The function only submits the second time.
Any insight would be appreciated.
I have 2 frames. On the top frame, named nav, I am using ASP to populate 3 <select>'s. Each select is in its own form. When the page loads, "nav" has a single <select> with categories. On load the bottom frame, named view, points to an empty page (blank.asp).
When I select an item from the category <select>, I call the function submitCategories() -- like so:
<select name="category" onChange="submitCategories()">
Herein lies the problem. My first task is to launch a page in the bottom frame with details about the category. Next, I send new data to the top frame to query the sub-categories.
The function looks like:
function submitCategories() {
document.forms.categoryFrm.action = 'a_rent6.asp';
document.forms.categoryFrm.target = 'view';
document.forms.categoryFrm.submit();
document.forms.categoryFrm.action = 'a_rent1.asp';
document.forms.categoryFrm.target = 'nav';
document.forms.categoryFrm.submit();
}
This function works properly in IE for Windows and Netscape, but not in IE for Mac. The function only submits the second time.
Any insight would be appreciated.