I have this PAGE and I have if you scroll down the map to the li here is my code
HTML
<ul class="play_navigation">
<li class="active"><a class="barino_story_bottom" href="#">The Story</a></li>
<li><a class="barino_video_bottom" href="#">The Video</a></li>
<li><a class="barino_gallery_bottom" href="#">The Gallery</a></li>
<li><a class="barino_equipment_bottom" href="#">The Equipment</a></li>
</ul>
my jQuery
<script type="text/javascript">
$(document).ready(function(){
$('.play_navigation a').click(function(){
console.log("this is the click");
return false;
});
});
</script>
Nothing is happening at all if I click on the links....you can view source and see its there...but if I paste it in console it works fine...what gives
$(document).on('click', '#ID', function(){ }
I was trying with the old$("button").click(function(){}
technique and wasted my most of the day. Thumbs-up! – Foxy