auto click button after another button was clicked on other page
-
I got 2 pages: index.html and contact.html and each of them have a button (a tag for index page). When I click a button on the contact page, it should redirect to the index page and auto click on the index page. Is this possible? Here my index page: <div id = "wrapper"> <a id="btn-show-content" href="#"></a> </div> Here's my contact page: <div id = "contact-wrapper"> <button id="btn-back"></button> </div>
-
Answer:
you can add query to button in contact page <div id = "contact-wrapper"> <a href="index.html#triggerbtn"></a> </div> Then, when the index page loads, it triggers triggerMe() function in the index page, you do the check of url hash <body onload="triggerMe()"></body> <script> function triggerMe() { var check = location.hash; if (check == "triggerbtn") { //button trigger even though you do not click on it $('#btn-show-content').trigger('click'); } } </script> I assume that you only need to trigger the function when click button in contact page. If you need the action happen all time you go to index page, you can use $(document).ready(function() { $('#btn-show-content').trigger('click'); });
Lee at Stack Overflow Visit the source
Other answers
You can use the JQuery .trigger() function. For your problem you wish to click a button on the contact page and it'll redirect you to the index page. When you go onto the index page and the document loads, this function will be performed. Documentation https://api.jquery.com/trigger/ (document).ready(function(){ $('#id').trigger('click'); }); In order to take away the issue of not being able to use Index.html everytime without it autoclicking. You can pass over a value to trigger the function on contact.html and then parse it in index.html, check out the solution to this question for that: http://stackoverflow.com/questions/404891/how-to-pass-values-from-one-page-to-another-in-jquery
BIW
Related Q & A:
- How To Click A Button In A Popup?Best solution by Stack Overflow
- How to draggable button background color to apply another button background?Best solution by Stack Overflow
- How to call button click event in another page's load event?Best solution by codeproject.com
- How to auto forward emails to another email account?Best solution by Yahoo! Answers
- Why can't I attach file though I click the "attach file" button?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.