How to disable tooltip and change item

How to disable tooltip and change item

At the default code it's work well

  1. $(document).tooltip({
  2. track: true
  3. });


But, when i try change item become alt tag, it's not work, i try very type [alt] a[alt] alt

  1. $(document).tooltip({
  2. track: true,
  3. items: 'alt' // alt not work, a[alt] not work, alt not work :(
  4. });

Disable not work too:

  1. <script type="text/javascript">
  2. $(document).ready(function() 
  3. {
  4. $(document).tooltip({
  5. track: true
  6. });
  7. $("#content").tooltip("disable");
  8. });
  9. </script>

  10. <div id="top">
  11. <a href="#" title="Kaka" alt="ph yeah">Click</a>
  12. </a>
  13. <div id="content">
  14. <a href="#" title="Khia Khia" alt="fuck ing">Click</a>
  15. </a>

How to fix it?

Thanks