sharepoint javascript
1 Topichow to avoid page reload in $(document).ready(function()
Hi Team, After dropdown changevent completion page gets reloaded everytime. I want to stop after function execution. Kindly help. <script type="text/javascript"> $( document ).ready(function() { alert('page load...'); $('select[id^="ctl00_ctl04_ctl00_ddlCrossWebLookupColumn"]').change(function() { alert('dropdown change event called'); functionTest(); }); }); function functionTest() { alert('change event function called...'); } </script>3.1KViews0likes1Comment