Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~209 People Reached
Favorite Forums
Favorite Tags
Member Avatar for r1990

here is the code i am using, [code=html]<html> <head> <script type="text/javascript"> function University() { var mylist=document.getElementById("myList"); document.getElementById("favorite").value=mylist.options[mylist.selectedIndex].text; } </script> </head> <body> <form> Select your University: <select id="myList" onchange="University()"> <option>Brunel</option> <option>Kingston</option> <option>Kent</option> </select> <div id="Layer1" style="position:absolute; left:368px; top:175px; width:257px; height:100px; z-index:1">Your University: <input type="text" id="favorite" size="20"></div> </form> </body>[/code] i want the …

Member Avatar for Thirusha
0
67
Member Avatar for r1990

i created a dropdown list containing university names e.g. 'oxford' 'cambridge' and so on. I would like the uni selected from the dropdown list to be sent to another page as the heading. I am having trouble doing this myself and I dont want to create a page for every …

Member Avatar for javaAddict
0
142