Java script tags placed between both <body> and <head>
<html>
<head>
<script type="text/javascript">
<! -
function salam () {
alert ("Salam from www.hedaet.com")
}
/ / ->
</ script>
</ head>
<body>
<script type="text/javascript">
<! -
document.write ("Salam from www.hedaet.com")
/ / ->
</ script>
<input type="button" onclick="Salam()" value="Salam from www.hedaet.com" />
</ body>
</ html>
============
<body> ও <head> উভয় ট্যাগ এর মাঝে জাভা স্ক্রীপ্ট রাখা
<html>
<head>
<script type="text/javascript">
<!--
function salam() {
alert("Salam from www.hedaet.com")
}
//-->
</script>
</head>
<body>
<script type="text/javascript">
<!--
document.write("Salam from www.hedaet.com")
//-->
</script>
<input type="button" onclick="Salam()" value="Salam from www.hedaet.com" />
</body>
</html>
|