How to disable tooltip and change item
At the default code it's work well
- $(document).tooltip({
- track: true
- });
But, when i try change item become alt tag, it's not work, i try very type [alt] a[alt] alt
- $(document).tooltip({
- track: true,
- items: 'alt' // alt not work, a[alt] not work, alt not work :(
- });
Disable not work too:
- <script type="text/javascript">
- $(document).ready(function()
- {
- $(document).tooltip({
- track: true
- });
- $("#content").tooltip("disable");
- });
- </script>
- <div id="top">
- <a href="#" title="Kaka" alt="ph yeah">Click</a>
- </a>
- <div id="content">
- <a href="#" title="Khia Khia" alt="fuck ing">Click</a>
- </a>
How to fix it?
Thanks