I am creating Jquery UI tabs on node.tpl file. All the required files are added but then also there is an error:
$.widget is not a function filepath on line 695
The following is my HTML code. I am using jQuery UI Tabs 1.8.20.
<div id="tabs">
<ul>
<li><a href="#tabs-1">DESCRIPTION</a></li>
<li><a href="#tabs-2">COMMENTS (0)</a></li>
<li><a href="#tabs-3">PHOTOS (3)</a></li>
</ul>
<div id="tabs-1">
<p><?php print render($content['field_model']); ?></p>
</div>
<div id="tabs-2">
<p><?php print render($content['field_product_testemonials']); ?></p>
</div>
<div id="tabs-3">
<p></p>
</div>
</div>