Jquery Block on my document .ready function not working
- by kumar
Hello Friens,
I have this code,
I added JS Script file to my Master page.
<script src="/Scripts/Jquery.blockUI.js" type="text/javascript"></script>
This Below code I have in my master page.on document.ready
<script type="text/javascript">
$(document).ready(function () {
$.blockUI({ message: $('#question'), css: { width: '275px'} });
});
</script>
<div id="question" style="display:none; cursor: default">
<h2 class="padding"><br />An unexpected system error has occurred while processing your request.<br /></h2>
<h3>We apologize for this inconvenience.<br />
Please report this error to your system administrator with the following information:<br /><br />
Session id is:</h3>
<input type="button" id="OK" value="OK" />
</asp:Content>
On my Document.ready Function my BlockUi is not working?
can any body tell me why its not working?
thanks