pues como dijo pzin, es muy sencillo
Código HTML:
Ver original<!DOCTYPE html>
<!--[if IE 8]><html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<!--======== Basic Page Needs =========-->
<!--======== Styles =========-->
body{
min-height:700px;
}
.cargando{
cursor:wait;
}
<!--======== Scripts =========-->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script> <script type="text/javascript"> $(document).ready(function(){
$('button').click(function(){
$('body').addClass('cargando');
});
});