'bgProperties' Example : Background « Style Layout « JavaScript DHTML
- JavaScript DHTML
- Style Layout
- Background
'bgProperties' Example
<html>
<head>
<script>
function function1() {
document.all.myBody.bgProperties = "fixed";
}
</script>
</head>
<body background="http://www.java2s.com/style/logo.png"
onclick="function1();"
id="myBody">
</body>
</html>
Related examples in the same category