html body { margin-top: 50px !important; } #top_form { position: fixed; top:0; left:0; width: 100%; margin:0; z-index: 2100000000; -moz-user-select: none; -khtml-user-select: none; -webkit-user-select: none; -o-user-select: none; border-bottom:1px solid #151515; background:#FFC8C8; height:45px; line-height:45px; } #top_form input[name=url] { width: 550px; height: 20px; padding: 5px; font: 13px "Helvetica Neue",Helvetica,Arial,sans-serif; border: 0px none; background: none repeat scroll 0% 0% #FFF; }
Javascript: Nandita T Das
Javascript: Nandita T Das
NANDITA T DAS
Topics to be Covered
Introduction
JS Comment
Variable
Data Type
Operator
Control Statement
Function
Object
Array
String
BOM & DOM
Validation
Events
Introduction
JavaScript is an Object-based scripting language.
JavaScript is not compiled but translated.
Scripting language:
A script or scripting language is a computer language with a series of commands
within a file that is capable of being executed without being compiled
How to write JS
<html>
<head>
<script type="text/javascript">
document.write(Welcome to JavaScript);
</script>
</head>
<body></body>
</html>
Where to write JS Code