By admin | January 26, 2008
When we REFRESS web page containing IFRAME, the page reloades with the starting page. Here is the solution being in the existing page after refress. (PHP Script)
Generally what happens, when we refress a web page containing IFRAME ? The page reloades with the starting page. Information provided in the existing page are lost. this is [...]
By admin | January 25, 2008
This lesson will help the beginners to handle alerts in JavaScripts
<html>
<head>
<script language=”javascript”>
<!–
function f1()
{
alert(”Skill Hut”); // Message ‘Skill Hut’ will be displayed
}
–>
</SCRIPT>
</head>
<body color=white>
Move your mouse over <a href=”" onMouseover=”f1()”>here</a>
</body>
</html>