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
Post a Comment