http://www.dynamicdrive.com/dynamici...bodescribe.htm
I would like to modify this script to have the output appear in an inline frame (called "inline") in my current document rather than navigate to a new URL, which seems to be the default mode. I'm not a code writer, but I suspect that a slight modification of the following piece of code in red will do the trick. Any suggestions?
================
function jumptolink(what){
var selectedopt=what.options[what.selectedIndex]
if (document.getElementById && selectedopt.getAttribute("target")=="newwin")
window.open(selectedopt.value)
else
window.location=selectedopt.value
================
By the way, I have set all of my menu values to include 'target="inline"'
Thanks for any help



Reply With Quote

Bookmarks