Hi All I Need A Simple Help With Javascript There is a javascript button on my site I Want That When My Site Loads after 3 seconds it will get clicked automatically ,,, I Have Tried But Unable To Create Exact Code
Glad to help! Asuming you're using jquery: setTimeout(function() { $('#your-button-id').click(); }, 3000); Code (JavaScript): The 3000 at the end is the number of miliseconds. 5 seconds would be 5000.