Go Back   Webmaster Centre News and Discussion Forum > Website Developement > Web Programming

Web Programming Post your questions, tips and opinions on web scripting, programming languages. Subject areas include Java, Java Script, PHP, ASP, .Net, XML, Perl, HTML, Flash,etc

Reply
 
LinkBack Thread Tools Display Modes
Old 05-01-2008, 01:30 PM   #1 (permalink)
Junior Member
 
Jamaal E's Avatar
 
Default Change the value of a select box with Java Script?

This is the code thus far:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>

<script type ="text/javascript">
function HouseSel(){
document.getElementById("HouseSelect").value = '3'
alert (document.getElementById("HouseSelect").value);
}
</script>
</head>

<body>
<form action="https://www.paypal.com/us/cgi-bin/webscr" method="post" name="_xclick">

<select name="item_name" id="HouseSelect">
<option value="0" selected="selected">--Please Select a House--</option>
<option value="1">Nags Head</option>
<option value="Rent Deposite: Calibre: ">Calibre</option>
</select>

<input name="calculate3" type="button" id="calculate3" tabindex="2"
onclick="HouseSel(); " value="Calculate"/>
</form>
</body>
</html>
The problem is, it's still returning the inital value of 1 rather than 3. What do I do?!?
Jamaal E is offline   Reply With Quote
Reply

Bookmarks



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
i want to change my credit card number to pay yahoo real quote subscribe? marketm51 Yahoo 0 05-02-2008 11:48 AM
How to change my neck name in yahoo messenger? Maybe Yahoo 0 05-01-2008 05:35 PM
Phishing PHP Mail script question.? VBc0d3rnoob Web Programming 0 05-01-2008 06:19 AM
MSN groups: change emoticon next to my member name? Lex A MSN 0 04-29-2008 02:57 AM
why do i get a message java script not working when using yahoo larry1stpro Web Programming 0 04-28-2008 09:34 AM



All times are GMT +1. The time now is 08:43 AM.
Powered by vBulletin® Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Style Provided By: Wrestling Clique - Wrestling Forums

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44