execute javascript method after completing code behind method ?

Posted by James123 on Stack Overflow See other posts from Stack Overflow or by James123
Published on 2010-05-12T03:29:54Z Indexed on 2010/05/12 3:34 UTC
Read the original article Hit count: 320

Filed under:
|
|

I can execute below callback() method after completion of document.getElementById('btnDownload').click(); .This Click is Code behind method. Now it is executing immediatly. I want wait "Click()" process done then Execute callback(); method.

function LoadPopup() {
        //  find the popup behavior
        this._popup = $find('mdlPopup');
        // show the popup
        this._popup.show();

        // synchronously run the server side validation ...
        document.getElementById('btnDownload').click();
       callback();         
    }

 function callback() {
        this._popup = $find('mdlPopup');
        //  hide the popup
        this._popup.hide();
        alert("hi");

}

© Stack Overflow or respective owner

Related posts about JavaScript

Related posts about ASP.NET