Why this jquery plugin not working with 1.4.2 -


http://plugins.jquery.com/project/semantictabs

what means of status - recommended 1.0.x

i'm using plugin code http://plugins.jquery.com/files/jquery.semantictabs.js_4.txt

then ( i'm using prototype.js onsite)

jquery.noconflict();     jquery(document).ready(function(){ $("#mytabset").semantictabs({   panel:'.mypanelclass',            //-- selector of individual panel body   head:'headelement',             //-- selector of element containing panel header, i.e. h3   active:':first'                         //-- panel activate default }); }); 

try changing

$("#mytabset").semantictabs({   panel:'.mypanelclass', //-- selector of individual panel body   head:'headelement', //-- selector of element containing panel header, i.e. h3   active:':first' //-- panel activate default }); 

to

jquery("#mytabset").semantictabs({   panel:'.mypanelclass', //-- selector of individual panel body   head:'headelement', //-- selector of element containing panel header, i.e. h3   active:':first' //-- panel activate default }); 

Comments

Popular posts from this blog

javascript - Enclosure Memory Copies -

php - Replacing tags in braces, even nested tags, with regex -