Java script tags placed between both <body> and <head> ~~Hedaet Forum~~


Email: Password: Forgot Password?   Sign up
Are you Ads here? conduct: +8801913 364186

Forum Home >>> Java Script >>> Java script tags placed between both <body> and <head>

Tamanna
Modarator Team
Total Post: 7639

From:
Registered: 2011-12-11
 

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>