I have a web site consisting of two frames. A top frame named "top" and a bottom frame named "lower".
I have the following javascript select box in the lower frame:I want the bottom frame to present the newly selected page. Instead the new page takes up the entire screen, which is devoid of frames.PHP Code:<form>
<select class=textbox name=borrower onChange=update_table(this.options)>
<option value="">Click To Go</option>
<option value="">-----------</option>
<option value="startloan.php" target="lower">Profile Info.</option>
<option value="address.php" target="lower">Address Info</option>
<option value="employer.php" target="lower">Employer Info.</option>
<option value="income.php" target="lower">Income Info.</option>
<option value="declarations.php" target="lower">Declarations</option>
<option value="assets.php" target="lower">Asset Info</option>
<option value="liabilities.php" target="lower">Liability Info.</option>
<option value="mortgage.php" target="lower">Mortgage Info</option>
</select></form>
What do I need to do to make the newly selected page load in the "lower" frame.
You can view the site here: http://www.caillouette.com/blue_blac...ash/index.html
Thanks


Reply With Quote
Bookmarks