$(document).ready(function() {
$("#demo img[title]").tooltip({effect: 'slide'});
});
I want to add an offset to this function, but when i add offset [20, 0], it doesn't work. I would like to know how to code using 2 parameters.
$(document).ready(function() {
$("#demo img[title]").tooltip({effect: 'slide'});
});
I want to add an offset to this function, but when i add offset [20, 0], it doesn't work. I would like to know how to code using 2 parameters.
$(document).ready(function() {
$("#demo img[title]").tooltip({effect: 'slide', offset: [10, 2]});
});
this should just work fine. If you have a problem, post you code.