1) Script Title: both are document viewers-one uses a drop down the other links
2) Script URL (on DD):
http://www.dynamicdrive.com/dynamici...opdownview.htm
http://www.dynamicdrive.com/dynamici...pdownview2.htm
3) Describe problem: I need both to work on one page.Basicly the are very simular ecept the two lines I pointed out.I stink with javascript and don't know how to make both work at the same time.Thanks in advance
Code:<form name="jumpy"> <select name="example" size="1" onChange="gone()"> <!-- CHANGE THE BELOW URLS TO YOUR OWN--> <option value="http://www.yahoo.com" selected>Yahoo.com</option> <option value="http://www.google.com">Google</option> <option value="http://www.lycos.com">Lycos</option> <option value="http://www.AltaVista.com">AltaVista</option> </select> <input type="button" name="test" value="Go!" onClick="gone()"> </form> <script language="javascript"> <!-- //Drop-down Document Viewer- © Dynamic Drive (www.dynamicdrive.com) //For full source code, 100's more DHTML scripts, and TOS, //visit http://www.dynamicdrive.com //Specify display mode (0 or 1) //0 causes document to be displayed in an inline frame, while 1 in a new browser window var displaymode=1 //if displaymode=0, configure inline frame attributes (ie: dimensions, intial document shown var iframecode='<iframe id="external" style="width:95%;height:400px" src="http://www.yahoo.com"></iframe>' /////NO NEED TO EDIT BELOW HERE//////////// if (displaymode==0) document.write(iframecode) function gone(){ <-----here var selectedurl=document.jumpy.example.options[document.jumpy.example.selectedIndex].value <-----here if (document.getElementById&&displaymode==0) document.getElementById("external").src=selectedurl else if (document.all&&displaymode==0) document.all.external.src=selectedurl else{ if (!window.win2||win2.closed) win2=window.open(selectedurl) //else if win2 already exists else{ win2.location=selectedurl win2.focus() } } } //--> </script>Code:<!--CHANGE LINKS BELOW TO YOUR OWN--> <a href="javascript:jumpto('http://www.cnn.com')">CNN.com</a> | <a href="javascript:jumpto('http://www.msnbc.com')">MSNBC</a> | <a href="javascript:jumpto('http://www.abcnews.com')">ABC News</a> | <a href="javascript:jumpto('http://news.bbc.co.uk')">BBC UK News</a> <script language="javascript"> <!-- //Drop-down Document Viewer II- © Dynamic Drive (www.dynamicdrive.com) //For full source code, 100's more DHTML scripts, and TOS, //visit http://www.dynamicdrive.com //Specify display mode (0 or 1) //0 causes document to be displayed in an inline frame, while 1 in a new browser window var displaymode=0 //if displaymode=0, configure inline frame attributes (ie: dimensions, intial document shown var iframecode='<iframe id="external" style="width:95%;height:400px" src="http://www.yahoo.com"></iframe>' /////NO NEED TO EDIT BELOW HERE//////////// if (displaymode==0) document.write(iframecode) function jumpto(inputurl){ <-----here if (document.getElementById&&displaymode==0) <------------here document.getElementById("external").src=inputurl else if (document.all&&displaymode==0) document.all.external.src=inputurl else{ if (!window.win2||win2.closed) win2=window.open(inputurl) //else if win2 already exists else{ win2.location=inputurl win2.focus() } } } //--> </script>



Reply With Quote
Bookmarks