Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function appletLoad()
- {
- var isIE11 = !!navigator.userAgent.match(/Trident.*rv[ :]*11\./)
- if (isIE11)
- {
- if (typeof document.myApplet != 'undefined')
- { //IE9 will come here only when it is loaded
- if (document.myApplet.isActive())
- {
- $("#smartCard").css("cursor", "default");
- $("#smartCardCtl").css("cursor", "default");
- $("#taxId").css("cursor", "default");
- $("#cardIdCtl").css("cursor", "default");
- $('#smartCard').button('reset');
- $("#smartCard").prop("disabled",false);
- $('#smartCardCtl').button('reset');
- $("#smartCardCtl").prop("disabled",false);
- $('#myModal').modal('hide');
- }
- else
- {
- $("#smartCard").css("cursor", "wait");
- $("#smartCardCtl").css("cursor", "wait");
- $("#taxId").css("cursor", "wait");
- $("#cardIdCtl").css("cursor", "wait");
- $('#smartCard').button('loading');
- $('#smartCardCtl').button('loading');
- $('#myModal').modal('show');
- setTimeout(appletLoad(), 100);
- }
- }
- else
- {
- $('#smartCard').button('loading');
- $('#smartCardCtl').button('loading');
- $('#myModal').modal('show');
- setTimeout(appletLoad(), 100);
- }
- }
- else
- {
- appletError('ไม่สามารถอ่านบัตร SmartCard ได้เนื่องจาก Web Browser ไม่รองรับ!');
- $('#smartCard').button('reset');
- $("#smartCard").prop("disabled",true);
- $('#smartCardCtl').button('reset');
- $("#smartCardCtl").prop("disabled",true);
- $('#myModal').modal('hide');
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment