If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > ASP > Firefox

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 12-30-05, 04:21
dimis2500 dimis2500 is offline
Registered User
 
Join Date: Jan 2005
Posts: 362
Firefox

I have a .asp file whith a "menu" frame and a "content" frame, the menu frame has submenus and it is dinamically open from database elements.
But the submenu does not expand in firefox and the netscape browser.
I use this code
Code:
<script language="JavaScript1.2" type="text/javascript">
parent.menu.navigate('frame_menu.asp?some=some1');
</script>
at content frame
to "refresh" the menu frame and to expand the submenu.
It works in IE and Opera but not at firefox.
What is wrong
dimis
Reply With Quote
  #2 (permalink)  
Old 12-30-05, 04:53
dimis2500 dimis2500 is offline
Registered User
 
Join Date: Jan 2005
Posts: 362
Javascript

Quote:
Originally Posted by dimis2500
Code:
<script language="JavaScript1.2" type="text/javascript">
parent.menu.navigate('frame_menu.asp?some=some1');
</script>
dimis
I change the code with this
Code:
<script language="JavaScript1.2" type="text/javascript">
parent.menu.location=('frame_menu.asp?some=some1');
</script>
and works!
dimis

Last edited by dimis2500; 12-30-05 at 05:08.
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On