Chandrashekar
12/22/2015 - 9:09 AM

Telerik Page Load Event Instead of document ready

Telerik Page Load Event Instead of document ready

 //plugin  
        jQuery.pageLoad = function (handler) {
            Sys.Application.add_load(function loadHandler() {
                handler();
                Sys.Application.remove_load(loadHandler);
            });
        };

        //usage with anonymous function or named
        $.pageLoad(function () {
            //execution here 
            debugger;
            var chk = $find("<%=rdContributor.ClientID%>");

        });