Hey all, Does anyone know if there is a conflict using .ajaxStart and .ajaxStop in combination with Rob Gonda's ajaxCFC?
I'm trying to do something simple, but it doesn't seem to work - the ajax call works fine, but my div doesn't get displayed on ajaxStart. Maybe I'm missing something obvious. Script: $(document).ready(function(){ $(".loadmessage").ajaxStart(function(){ $(this).show(); }); $(".loadmessage").ajaxStop(function(){ $(this).hide(); }); }); HTML: <div class="loadmessage" style="display:none; color:red;">SEARCHING...</div> -- Josh _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/