I have a problem , i'm using jQuery plugin from http://www.stilbuero.de/jquery/tabs/ , plugin for tabs and that enable history support for Tabs ui tabs ver 2.7, i switched from jQuery 1.1.3 to jQuery 1.3.2 and it's given the error in firebug uncaught exception: Syntax error , unrecognized expression: [@href$="#fragment-1"] , the plugin is working fine , but i don't like this error , what can be ... Sorry for my English , and thx :)
views:
181answers:
1
A:
The @ symbol was deprecated in the move from jquery 1.2.6 to 1.3.
[@href$="#fragment-1"]
should just be
[href$="#fragment-1"]
You should probably make the move to the UI tabs plugin too if you're changing your jquery version. Get it from the jqueryui project
Steerpike
2009-11-20 14:49:30
thx a lot it's working after this ;)
mIRU
2009-11-20 15:09:13
does not support history the new version
mIRU
2009-11-20 15:11:05