Hi,
My whole project <body> tag contains this
<code>
<body onload="start();" onmousemove="start();" onclick="start();" onkeydown="start();">
------
</code>
One way to type
<code>
onload="start();" onmousemove="start();" onclick="start();" onkeydown="start();"
</code>
this in all pages. Is there any other way in CSS to define the body tag with all those attributes in CSS
<code>
body
{
onload="start();" onmousemove="start();" onclick="start();" onkeydown="start();"
}
</code>
Will this work?
My whole project <body> tag contains this
<code>
<body onload="start();" onmousemove="start();" onclick="start();" onkeydown="start();">
------
</code>
One way to type
<code>
onload="start();" onmousemove="start();" onclick="start();" onkeydown="start();"
</code>
this in all pages. Is there any other way in CSS to define the body tag with all those attributes in CSS
<code>
body
{
onload="start();" onmousemove="start();" onclick="start();" onkeydown="start();"
}
</code>
Will this work?