My current code: <select name="SelectURL" onChange="document.location.href=document.breed.SelectURL.options[document.breed.SelectURL.selectedIndex].value" <option value="stuff.html">Item1</option></select> Code (markup): Basically I also have an iframe. <iframe name="stuff1"></iframe> So I want to change that javascript, so instead of going to the url, it just changes the iframe to that url. Thanks, BP
frames['stuff1'].location.href = document.breed.SelectURL.options[document.breed.SelectURL.selectedIndex].value; Code (markup):