User Profile

Collapse

Profile Sidebar

Collapse
mad genius
mad genius
Last Activity: Jan 22 '12, 06:29 PM
Joined: Jan 27 '11
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Here is a JavaScript solution to the problem:
    Code:
    <html>
    <body onLoad=chgtable()>
    <table border=1>
    <tr><td id="tablecell">Unchecked</td></tr>
    </table>
    <script type="text/javascript">
    function chgtable(){
    	if(document.getElementById("checkbox").checked == true){
    		document.getElementById("tablecell").innerHTML
    ...
    See more | Go to post

    Leave a comment:


  • I'm not a 100% sure what you want but I think this is what you want:
    Code:
    <html>
    <head>
    <script type="text/javascript">
    function formcheck(){
    	var blankfields = new Array()
    	if(document.getElementById("country").value == "Country"||document.getElementById("country").value == ""){
    		blankfields.push("Country")
    	}
    	if(document.getElementById("email").value
    ...
    See more | Go to post

    Leave a comment:


  • Solution

    It is a simple program:
    Code:
    <html>
    <head>
    <script type="text/javascript">
    var numat = 5000000
    
    function numberchange(){
    	numat += 500
    	document.getElementById("numspace").innerHTML = "$" + numat + " Saved"
    	setTimeout("numberchange()",1000)
    }
    </script>
    </head>
    <body onLoad="setTimeout('numberchange()',1000)">
    ...
    See more | Go to post
    Last edited by Niheel; Jan 27 '11, 04:00 AM. Reason: code tags

    Leave a comment:

No activity results to display
Show More
Working...