View Single Post
Old 08-22-2008, 06:03 AM   PM User | #2
technica
Regular Coder

 
Join Date: Dec 2007
Posts: 106
Thanks: 0
Thanked 3 Times in 3 Posts
technica is an unknown quantity at this point
if you want to send multiple parameters to any javascript function then you can easily dot his by using semicolon(,) between the paramerters

like this:
Code:
onclick=\"checkData(noid.value,status)\
The actual javascript function must contain the same number of parameters in its definition

Like this:

Code:
 <scripts>
 function checkData(noid,status){
 ................................
 }
 </scripts>

Hope this helpes you
__________________
Programming & Webmaster Forum - AdSense Revenue Sharing forum
technica is offline   Reply With Quote