|
||||||
| Javascript Javascript Tutorials and Code |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|||||
|
Introduction:-
Here I will show you how to go to different websites from a drop down menu Let's Begin:- Make this code between the HEAD tags:- Code:
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function GotoURL(form){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}
// End -->
</SCRIPT>
Code:
<form name="form"> <select name="site" size=1> <option value="">Select where you want to go <option value="http://www.time4videos.net.tc">Time4Videos <option value="http://www.codecall.net">CodeCall </select> <input type=button value="Go there" onClick="javascript:GotoURL(this)"> </form> Code:
....... <option value="">Select where you want to go <option value="http://www.time4videos.net.tc">Time4Videos <option value="http://www.codecall.net">CodeCall ....... Conclusion:- Code is attached, and feedback is welcome!
__________________
CodeCall Blog | CodeCall Wiki | Shareware | Linux Forum Chat with other CodeCall members on IRC; connect to irc.codecall.net and join #codecall ![]() Business Directory | Technology Blog | Windows Help Last edited by TcM; 01-06-2007 at 09:02 AM. |
| Sponsored Links |
|
|
|
|||||
|
Quote:
There is no need of that! Remember less code = less time your page will take to load ![]()
__________________
CodeCall Blog | CodeCall Wiki | Shareware | Linux Forum Chat with other CodeCall members on IRC; connect to irc.codecall.net and join #codecall ![]() Business Directory | Technology Blog | Windows Help |
|
|||
|
I was using </option> always dude, you may find a toolbar at the top of XTRaze.NET - Preloading images.... which is Edited by me for myself. And I was using </option> there too. I just saw this on another site and made a lot of changes and still going on to make this good for me.
|
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Menu Item options. | aravot | easyContact | 3 | 12-13-2007 02:27 PM |
| Counting Files with JavaScript | Matt | JavaScript and CSS | 5 | 08-01-2007 12:02 PM |
| JSP = JavaScript? | Ronin | JavaScript and CSS | 1 | 08-13-2006 06:56 AM |