Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

0x800a01b6 - JavaScript runtime error: Object doesn't support property or method 'tabs'

I have the following code:

    <link rel="stylesheet" href="//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
    <script src="//code.jquery.com/jquery-1.9.1.js"></script>
    <script src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
    <link rel="stylesheet" type="text/css" href="style.css" />

 <div id="tabsWithStyle" class="style-tabs">
    <ul>
        <li><a href="#facebook">Facebook</a></li>
        <li><a href="#twitter">Twitter</a></li>
    </ul>
    <div id="facebook">
        content about Facebook here
    </div>
    <div id="twitter">
         content about Twitter here
    </div>
</div>

<script type="text/javascript">
    $(document).ready(function () {
        $('#tabsWithStyle').tabs();
    });
</script>

For some reason I keep getting the error :

0x800a01b6 - JavaScript runtime error: Object doesn't support property or method 'tabs'

I've been searching Google and here as well, I can't seem to find a solution.

Can anyone help me?

like image 585
Bart Schelkens Avatar asked Jun 13 '26 23:06

Bart Schelkens


1 Answers

Its not happening with me,its working good! perhaps, your jquery is conflicting somewhere. try using-

<script>
$m=jQuery.noConflict();
</script>
<script type="text/javascript">
    $m(document).ready(function () {
        $m('#tabsWithStyle').tabs();
    });
</script>
like image 66
sunny Avatar answered Jun 16 '26 13:06

sunny