here's the page declaration: <asp:Content ID="Content3" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server"> <input type=button id="btnTest" value="Test ExceptionHandler" onclick="showError('Error Message')" /> <div id='showError' style='display:none'> <a href='#' title='Close' class='modalCloseX modalClose'>x</a> <div class='header'><span>Error</span></div> <p class='message'></p> <div class='buttons'> <div class='no modalClose'>OK</div> </div> </div> </asp:Content>
On Wed, Sep 17, 2008 at 9:42 PM, Eric Martin <[EMAIL PROTECTED]> wrote: > > It sounds like an issue with your page. Do you have any code examples > or a page that I can view? > > On Sep 17, 5:40 am, kimoy <[EMAIL PROTECTED]> wrote: > > Hi, > > > > I'm developing on ASP.NET and have been trying to make the SimpleModal > > plugin work but somehow the jQuery.hide() function throws an error > > 'this.style is null or not an object'. > > > > This is my jQuery code: > > > > jQuery(document).ready(function(){ > > jQuery('#showError').modal(); > > > > }); > > > > Thanks. >