Trying to include ThickBox (from http://jquery.com/demo/thickbox/) in an ASP.NET application.
Visual Studio is failing when I try to run the application with the error: js\ThickBox\jquery-1.2.6.min.js(11): error CS1056: Unexpected character ‘$’
Using Visual Studio 2008 and jquery 1.2.6
Maybe is because of the conflict between jQuery $ and the one defined by the asp.net script library.
You can call jQuery.noConflict() then use jQuery instead of $. For example instead of $(‘#test’) you will call jQuery(‘#test’).
See http://docs.jquery.com/Core/jQuery.noConflict for more info.