JQuery & SVG document - errors?
My website is all generated SVG. The JQuery jscript is accessible by the website: I can view its contents at
http://localhost:8000/static/js/jquery-1.4.2/js.
The initial SVG:
<svg id="root" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" onload="myinit(evt)" width="100%" height="100%">
One of my js files contains this:
$(document).ready(function(){
$("#stats").draggable();
});
I'm seeing errors in Chrome's console:
Uncaught TypeError: cannot set property 'display' of null jquery-1.4.2.js:834
Uncaught ReferenceError: $ is not defined
Is what I'm trying to do possible? Thanks