The ProgrammersTalk Community
Forum Register Search Today's Posts Mark Forums Read
Register

Go Back   The ProgrammersTalk Community > Web Programming > DHTML > JavaScript


Welcome to the The ProgrammersTalk Community forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.
Reply
 
LinkBack Thread Tools    Display Modes   
  #1 (permalink)  
Old 01-25-2008, 01:54 PM
MrPickle's Avatar
MrPickle MrPickle is offline
Sr. Programmer
Join Date: Nov 2007
Location: England, Lincolnshire
Posts: 303
iTrader: (0)
MrPickle is on a distinguished roadMrPickle is on a distinguished roadMrPickle is on a distinguished road
Setting an objects value

I want to set a text fields value to whatever's there plus something else when they push a button, basically, add onto what's currently in the box.

I've done the following but it sets the boxes value to "undefined"

It creates nine buttons, then when one is pushed, the corresponding value should be added to the answer box. (I am making a calculator to learn PHP)
PHP Code:
echo "<input type=\"text\" id=\"answer\" size=\"21\" readonly=\"readonly\"></br>";
for(
$i=0$i<10$i++){
    echo 
"<input type=\"button\" value=\"" $i "\" name=\"Cal_" $i "\" style=\"width:" $width "px;height:" $height "px\" onClick=\"document.getElementById('answer').value=document.getElementById('answer').value" $i "\">";

I didn't know where to post this as the onClick is Java and the rest is PHP so I guessed here.

__________________
PM me and tell me your name or a phrase and I shall write it in Elf for you. English Tengwar to be precise.
Digg this Post! Del.Icio.Us this Post! Technorati this Post! Furl this Post! Mister Wong this Post! Newsvine this Post! Spurl this Post! Reddit this Post! Netscape this Post!

Last edited by MrPickle : 01-25-2008 at 02:26 PM.
Reply With Quote
  #2 (permalink)  
Old 01-25-2008, 05:19 PM
MrPickle's Avatar
MrPickle MrPickle is offline
Sr. Programmer
Join Date: Nov 2007
Location: England, Lincolnshire
Posts: 303
iTrader: (0)
MrPickle is on a distinguished roadMrPickle is on a distinguished roadMrPickle is on a distinguished road
Got it working with Javascript;

HTML Code:
<script type="text/javascript">
function setAnswerValue(number){
obj = document.getElementsByName("answer")[0];
value = obj.value;
if(obj.value == "Answer")
    obj.value = number;
else
    obj.value = value + number;
}
</script>
then:
HTML Code:
<input type="text" name="answer" size="21" readonly="readonly" value="Answer">
PHP Code:
for($i=1$i<10$i++){
        echo 
"<input type='button' value='" $i "' name='Cal_" $i "' style='width:" $width "px;height:" $height "px' onClick='setAnswerValue(" $i ")'>";


__________________
PM me and tell me your name or a phrase and I shall write it in Elf for you. English Tengwar to be precise.
Digg this Post! Del.Icio.Us this Post! Technorati this Post! Furl this Post! Mister Wong this Post! Newsvine this Post! Spurl this Post! Reddit this Post! Netscape this Post!
Reply With Quote
Reply


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

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



All times are GMT -7. The time now is 06:37 PM. Powered by vBulletin
Copyright © 2000 - 2007, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO © 2007 ProgrammersTalk Sedo - Buy and Sell Domain Names and Websites project info: programmerstalk.net Statistics for project programmerstalk.net etracker® web controlling instead of log file analysis


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 45 46 47 48 49 50