I want to click on a div and update another divs content. Easy enough to do in jsfiddle but it is not working in my actual project. When I move the code to my project, the click is never registered and the console.log() never fires. Any ideas on using Chrome Developer Tools or Firebug to troubleshoot this. When there are no obvious clues, like syntax errors etc. what are the more elusive clues to look for?
I added this:
$('.routers').click(function(event){
$('#titleBarContainerRightier').append('Scooby Doo!');
console.log("click!");
To this and the click events stopped showing up:
$(document).ready(function(){
loadDATA('JSON/data.json', "DSC123");
$('.routers').click(function(event){
$('#titleBarContainerRightier').append('Scooby Doo!');
console.log("click!");
});
});
.routersload vialoadDATA()? – thecodeparadox Apr 26 '12 at 15:49loadDATAfunction? Are there any errors in the console? Is.routersappended to your page dynamically? – Rory McCrossan Apr 26 '12 at 15:49