Hello is there any way to automatically click on a link on my page using javascript?
|
|
This function works in at least Firefox, and Internet Explorer. It runs any event handlers attached to the link and loads the linked page if the event handlers don't cancel the default action.
|
|||||||||
|
|
|||||||||||||
|
|
If you only want to change the current page address, you can do that by simply doing this in Javascript :
|
|||||
|
|
You could just redirect them to another page. Actually making it literally click a link and travel to it seems unnessacary, but I don't know the whole story. |
|||
|
|
|
You can't make the user's mouse do anything. But you have full control over what happens when an event triggers. What you can do is do a click on body load. W3Schools has an example here. |
||||
|
|
|
Simply like that :
or at page load :
|
|||||||||||
|
|
Instead of clicking, can you forward to the URL that the click would go to using Javascript? Maybe you could put something in the body onLoad to go where you want. |
|||
|
|
|
This may help you
|
|||||
|