Num wordpress meu (http://www.dsystm.com) implementei o accordion da jqueryui, contudo era-me devolvido o erro
Error: $(“#accordion”).accordion is not a function
ou
TypeError: Result of expression ‘$(“#accordion”).accordion’ [undefined] is not a function.
a solução foi substituir o código original
$(function() {
$("#accordion").accordion();
});
por
jQuery.noConflict();
jQuery(document).ready(function($){
$("#accordion").accordion();
});
0 comments ↓
There are no comments yet...Kick things off by filling out the form below.
Leave a Comment