Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

125
Views
Why do wordpress Jquery only work after refresh

This is my code :

<script type="text/javascript">
  jQuery( document ).ready(function() {
    jQuery('#bookbtn_loc_1').on('click', function(event){
      jQuery("a.da-close").click();
      jQuery("#loc").val("B&B de fruithoeve Schalkhoven").change();
    });
  });
</script>

I want to run this code when the button with id #bookbtn_loc_1 is clicked.

But, this script only works after I refresh the page. During the first load, it will not work.

I have tried adding the code on the header and body, but the issue is still there.

I hope there is someone out there who has gone to this issue and solved it already. Please share your solution.

Thank you.

about 4 years ago · Juan Pablo Isaza
2 answers
Answer question

0

Try with this:

<script type="text/javascript">
    jQuery( document ).ready(function() {
        jQuery( document ).on('click', '#bookbtn_loc_1', function(){
            jQuery("a.da-close").click();
            jQuery("#loc").val("B&B de fruithoeve Schalkhoven").change();
        });
    });
</script>

Remove event parameter from function if it's not needed.

about 4 years ago · Juan Pablo Isaza Report

0

i found that there is no button with id "bookbtn_loc_1" exist in your page. So that the script can not bind the click event to the button, so it's not fire.

As you can see in the bellow image, when i find "bookbtn_loc_1" - there are no result: enter image description here

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!