Button Action Loader

Button Action Loader

by JQ Purfect

HTML

<div style="width: 120px;">
    <div id="result" style="float: left"></div>
    <div style="float: right">
        <button id="execute">Build Audiene</button>
    </div>
</div>

JavaScript

$("#execute").click(function() {
    event.preventDefault();
    $("#execute").attr("disabled", "disabled");
    $("#result").html('<img src=http://www.ajaxload.info/cache/FF/FF/FF/00/73/CC/1-0.gif>');
     $('#result').delay(1000).fadeOut('slow', function() { 
         alert('Do function');
     });
})