Test if jquery is loaded not using the document ready event

后端 未结 6 1083
北海茫月
北海茫月 2020-12-19 05:28

On my site I have a jquery function which retrieves data from another (secured) server as soon as the page is loaded. Using a jsonp call I currently load this data after doc

6条回答
  •  有刺的猬
    2020-12-19 05:52

    You can add either load complete function or grid complete function like shown below which will help you to do some operation on jqgrid

     height : '550',
        width : '787',
        loadComplete : function() {}
        gridComplete:function(){}
    

提交回复
热议问题