Showing posts with label java script. Show all posts
Showing posts with label java script. Show all posts
Play simple game - See how quick you are.. It's amazing

Play simple game - See how quick you are.. It's amazing

Hit-the-Dot

Test your skill. How many boxes can you check in 30 seconds?
    
Time:
    
Score:


Instructions:

  1. Click on the radio buttons as
    they are selected randomly by the computer.
  2. 1 point per hit, minus 1 point per miss.

Free JavaScripts provided
by The JavaScript Source

Write a code to create a scrolling text in a text box

Write a code to create a scrolling text in a text box

Write a code to create a scrolling text in a text box

Code

<html>
<script>
var sp;
var k;
k=0;
sp=" ";
function scroll()

{
f1.t1.value=sp+"welcome";
sp=sp+" ";
k=k+1;

if(k>=30)
{
sp=" "
k=0;
}

window.setTimeout("scroll()",100);
}
</script>
<body onload="scroll()">
<form id="f1" method="post">
<input type="text" size="50" id="t1">
</form>
</body>
</html>

output



Hope you all will enjoy this Post. Any kind of positive suggestions regarding this post are heartly accepted. If any one has problem with this post content, kindly let me know through email , i will update or remove this post as soon as possible

Thanks

Regards

Ketan Joshi

SA Palanpur HO

Mo no:+91 8866984506

eMail : k9724675876@gmail.com
Objetc Creation using java script

Objetc Creation using java script

code
<html>
<script language="javascript">
var car=new Object();
car.model="kkk";
car.make="Wagon R";
car.year="2009";
car.price="Rs. 150000/-";

document.write(car.model+"<br>"+car.make+"<br>"+car.year+"<br>"+car.price)

</script>
</html>

output 





Hope you all will enjoy this Post. Any kind of positive suggestions regarding this post are heartly accepted. If any one has problem with this post content, kindly let me know through email , i will update or remove this post as soon as possible

Thanks

Regards

Ketan Joshi

SA Palanpur HO

Mo no:+91 8866984506

eMail : k9724675876@gmail.com

; //]]>