I'm having trouble accessing my div
elements with jQuery after implementing snap.js
in my Ratchet project, does anyone know why and how can I fix this?
document.getElementById('mydivId').innerHTML //THIS WORKS
$('#mydivId').html() //THIS DOESN'T WORK
I've included the jquery.js and implemented $(document).ready(function(){});
I get "Uncaught TypeError: Cannot call method 'ready' of null"