jquery - Anchor links are not working after ajax call -


i have 2 type of anchor link 1 utilize ajax , other directly call particular url

anchor links not working after ajax call .everything running fine using code problem page has other anchor links stop working after ajax call other links using ajax call working fine.interesting part when press esc key anchor link not working start working.
making ajax call in way :

$("#submit1").bind('click', function(e){               submitformdata(); });  function submitformdata() {     $.ajax({         type: "post",         url: "<?php echo router::url('/'); ?>items/edit",         data: $("#itemeditform").serialize(),         datatype: 'html',         start: $("#maskeddiv").loadoverstart(),         success: function(response) {             // hide loading image             $("#maskeddiv").loadoverstop();             $("#modal_window_container").html(response);             closedialog();             showmessage();         }     }); } 


Comments

Popular posts from this blog

python - How to create a legend for 3D bar in matplotlib? -

java - Multi-Label Document Classification -

php - Dynamic url re-writing using htaccess -