I am pulling my hairs out over an invalid argument error in IE7, maybe all IE's...
The site is: http://www.karencaldwelldesign.com/fashion
IE says it is an error on line 12, but if I open up Script Debugger it says the problem is with some code in jQuery. I don't buy that.
So, I looked at my script (http://www.caldwellsnyder.com/__data/assets/js_file/0003/5943/kc-gallery.js) and line 65 seems to be the problem:
data = '<div id="content'+id+'" class="content">'+data+'</div>';
data is returned from the jQuery $.ajax() function, but I needed to wrap it with an additional numbered div.
In particular it is the id variable that is caused the invalid argument error, but I have no idea why! The var is just a number that gets incremented. Removing the var from that line lets the page load perfectly, but I really need to increment the id in this way.
Does anyone have any idea why this simple variable would be cause invalid argument in IE?