10 lines
239 B
JavaScript
10 lines
239 B
JavaScript
$(document).ready(function() {
|
|
$("button").mouseover(function() {
|
|
$.ajax({
|
|
url: "demo_test.txt",
|
|
success: function(result) {
|
|
$(".tool").html(result);
|
|
}
|
|
});
|
|
});
|
|
}); |