You don't need jQuery or Javascript at all to that:

     <meta http-equiv="refresh" content="0;url=http://
www.newpage.com/"/>

inside the <head> will redirect all users instantly.

If for some reason you need to it via JS you don't need to wait for
any event either, not even load jQuery:

<head>
<script type="text/javascript">
   window.location.href = "http://algum.lugar.com";;
</script>
</head>

- ricardo

On Oct 25, 9:05 am, led <[EMAIL PROTECTED]> wrote:
> hi , i'm just starting with jquery .
> It is possible to load a page in the onload event or just calling the
> load utility in a script
>
> ex=$('#divCliente').load('proprietarioLogin.asp');
>
> it's that i want to redirect to another page but i dont hnow how.
> please help.

Reply via email to