0

Is there any way how to show a Tipsy tooltip automatically on load and close it after 10 seconds?

<img class="west" title="Click here to upload a photo" src="/images/nophoto.jpg" alt="" />
$('.west').tipsy({ gravity: 'w', html: true, live: true });
Rory McCrossan
  • 331,213
  • 40
  • 305
  • 339
user1406271
  • 297
  • 1
  • 3
  • 12

1 Answers1

0
$(function() {
    $('.west').tipsy('show');
    setTimeout(function() {
        $('.west').tipsy('hide');
    }, 10000);
});
Tomanow
  • 7,247
  • 3
  • 24
  • 52