jquery - Local web server not working properly -


i have odd issue local web server. i'm working on zend framework application, , changes make on app, not reflected when open website in browser. instance i've tried putting simple console.log on button click event in jquery:

<script>  $(document).ready(function() {           $("#btnredeem").click(function()           {             console.log('it works');           });       }); </script> 

but whenever press button, or console.log anywhere, doesn't reflects changes.. i've tried using several browsers make sure nothing being cached or that. i'm using mamp tool run apache server , mysql db;

does knows might ?


Comments

Popular posts from this blog

javascript - Laravel datatable invalid JSON response -

java - Exception in thread "main" org.springframework.context.ApplicationContextException: Unable to start embedded container; -

sql server 2008 - My Sql Code Get An Error Of Msg 245, Level 16, State 1, Line 1 Conversion failed when converting the varchar value '8:45 AM' to data type int -