![]() |
Can we fire two events on a single check box click one from javascript and other from - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: General (https://forum.codeigniter.com/forumdisplay.php?fid=1) +--- Forum: Lounge (https://forum.codeigniter.com/forumdisplay.php?fid=3) +--- Thread: Can we fire two events on a single check box click one from javascript and other from (/showthread.php?tid=72025) |
Can we fire two events on a single check box click one from javascript and other from - andrewfetterly - 10-26-2018 Code: <asp:checkbox ID="chkheader" runat="server" onchangeclicked="checkbox clicked"> Codebehind Code: protected void checkbox clicked(object sender,EventArgs e) I need both events to fire on checkbox click. Is it possible?? **SEO SPAM LINK REDACTED!** RE: Can we fire two events on a single check box click one from javascript and other from - InsiteFX - 10-27-2018 Maybe this will help. Call 2 functions within onChange event |