HTML Header profile : Header « HTML « JavaScript DHTML
- JavaScript DHTML
- HTML
- Header
HTML Header profile
<html>
<head id="myHeader">
<script language="JavaScript">
function function1() {
alert('The following profile has been added:\n"http://www.java2s.com"');
document.all.myHeader.profile = "http://www.java2s.com";
}
</script>
</head>
<body>
<input type="button" value="Add profile" onClick="function1();">
</body>
</html>
Related examples in the same category