Programming Forums
User Name Password Register
 

RSS Feed
FORUM INDEX | TODAY'S POSTS | UNANSWERED THREADS | ADVANCED SEARCH

 
 
Thread Tools Display Modes
Prev Previous Post in Thread   Next Post in Thread Next
Old Nov 24th, 2006, 9:28 AM   #1
paulmedic555
Newbie
 
paulmedic555's Avatar
 
Join Date: Jan 2005
Location: Greece
Posts: 18
Rep Power: 0 paulmedic555 is on a distinguished road
Send a message via MSN to paulmedic555
simple multiply script

Hi all our teacher gave us this simple script that when someone gives two numbers in two forms then it will multiply their contents and print the result in an another form after he click one button.Here is the code:
<script language="javascript">
function convert (form)
{
   if ((form.first.value == "") 
       (form.second.value ==""))  
       return;
   form.result.value=form.first.value * form.second.value;     
}  
</script>
and
<form method="post">
Give first number:<input type="text" name="first" value=0 onchange=convert(this.form)>
<p>Give second number:<input type="text" name="second" value=0 onchange=convert(this.form)>
<p><input type="button" name="calculate" value="calculate" onclick=convert(this.form)>
<p>Result:<input type="text" name="result" value="not calculated" ><br>
</form>
I only tried in firefox and it didn't work.Any ideas?
paulmedic555 is offline   Reply With Quote
 

Bookmarks

« Previous Thread in Forum | Next Thread in Forum »

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
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Simple blackjack script problem. Need help. jokr004 C++ 6 Feb 10th, 2006 11:44 AM
A simple script isn't working correctly scuzzman Perl 3 Dec 23rd, 2005 6:42 AM
A simple perl script satimis Perl 3 Aug 15th, 2005 9:31 AM
A simple script to execute a command package satimis Bash / Shell Scripting 3 Aug 12th, 2005 11:28 PM
Simple menu script trufla Bash / Shell Scripting 2 Apr 4th, 2005 10:17 AM




DaniWeb IT Discussion Community
All times are GMT -5. The time now is 12:44 AM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC