Files
faveo/public/lb-faveo/js/tooltip.js
2016-02-01 17:20: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);
}
});
});
});