Algo así:
Código Javascript
:
Ver original$(function(){
$('button').click(function(){
o así:
Código Javascript
:
Ver original<!DOCTYPE html>
<html>
<head>
<script src="jquery.js"></script>
<script>
$(document).ready(function(){
$("div").ajaxStart(function(){
$(this).html("<img src='demo_wait.gif' />");
});
$("button").click(function(){
$("div").load("demo_ajax_load.asp");
});
});
</script>
</head>
<body>
<div><h2>Let AJAX change this text</h2></div>
<button>Change Content</button>
</body>
</html>