Files
faveo/public/lb-faveo/installer/js/tooltip.js
2016-01-04 18:05:45 +05:30

10 lines
239 B
JavaScript

$(document).ready(function() {
$("button").mouseover(function() {
$.ajax({
url: "demo_test.txt",
success: function(result) {
$(".tool").html(result);
}
});
});
});