I'm having a problem and I don't know what I'm doing wrong. I have a button (menu link) that I'd like to click to load file content into said div. When I click it in Dreamweaver live view it works without any problem, but it doesn't work in Chrome browser. JS works in Chrome, I've done a test jquery popup window.
jQuery:
<script type="text/javascript">
$(document).ready(function () {
$('#loadPage').click(function(){
$('.content').load( 'pages/tools/przesuniecie.html' );
});
}); </script>
HTML:
<a id="loadPage" href="#">Test</a>
In Dreamweaver it works like it's supposed to be. On button click it loads przesuniecie.html content into content div.
Thanks for any help