Hi All !
This is my first post here.....!
you see as the title mentions... I have two functions that has to respond as soon as the page loads..Picture a scenario that has the following code.
Code:
function siteMsg() {
window.alert("hello");
}
function pop() {
window.open('http://www.google.com','newWindow');
}
function all() {
siteMsg();
pop();
}
<body onLoad="all()">
bla bla
</body>
if i`m not mistaken this should work perfectly ok...right ?
well it doesn`t, nothing triggers...Does anyone know why, such situations happen ?
thank you.
:)
- Quitters Never Win -