I want to wait until an ASP.NET datagrid
is resized correctly before showing a popup message. This works great:
$(document).ready(function () { showpopup(); });
But I need to acheive it without jQuery. I've tried many ways:
$(window).bind("load", function() {showpopup();}
$(function() { showPopup();}
but this doesn't work.
No comments:
Post a Comment