I got a problem with a script, when I try to load the page in IE7
Expected identifier, string or number zoommap.js, line 126 character 6
This is what is in that line:
}).appendTo(map).click(function(){
Object doesn't support this property or method setupMap.js, line 6 character 1
This is what is in that line:
$('#map').zoommap({
I hope that you can help me, I'll really appreciate it. If you need any other info please tell me.
Remember that JavaScript does not support "final commas" in object definitions. So I cannot write:
var obj = {'a': 1, 'b': 2,}
but have to write:
var obj = {'a': 1, 'b': 2}