|
1 | 1 | # jquery-events-functions
|
2 | 2 | All jQuery Functions and Events
|
| 3 | +<hr> |
| 4 | + |
| 5 | +$(document).on("click", ".edit_listcontact", function(){ }); |
| 6 | + |
| 7 | +$(document).on("click","#upd_user_info_btn",function(){ }); |
| 8 | + |
| 9 | +$(document).on("keyup","#statesearch",function(e){}); |
| 10 | + |
| 11 | +$('#account_id').on('change', function () { }); |
| 12 | + |
| 13 | +$('#ultab a[href="#add_contacts"]').click(function(){ }); |
| 14 | + |
| 15 | +$("#contact_per_salutation").addClass("errTxtField"); |
| 16 | + |
| 17 | +$("#contact_per_salutation").removeClass("errTxtField"); |
| 18 | + |
| 19 | +$(document).one('click', closeTooltip); |
| 20 | + |
| 21 | +$(".loader").show(); |
| 22 | + |
| 23 | +$("#show_parent_grp").hide(); |
| 24 | + |
| 25 | +$(".loader").append(); |
| 26 | + |
| 27 | +$('#reporting_to_contact_person').empty(); |
| 28 | + |
| 29 | +$('#imagepopup').modal('show'); |
| 30 | + |
| 31 | +$('#image-zoom').attr("src",img_path); |
| 32 | + |
| 33 | +$('#users_for_account').append($("<option></option>").attr("value",0).text("Select")); |
| 34 | + |
| 35 | +$('input').on('ifChecked', function(event){ }); |
| 36 | + |
| 37 | +$('input').on('ifUnchecked', function(event){ }); |
| 38 | + |
| 39 | +$.each(response.products, function(key,value) { }); |
| 40 | + |
| 41 | +if(!mailValidation(assistant_email)){} |
| 42 | + |
| 43 | +$("#closepop" ).trigger( "click" ); |
| 44 | + |
| 45 | +$(".modal-title").html("Edit Notification"); |
| 46 | + |
| 47 | +$("#all_regn_chkd").prop("checked",true); |
| 48 | + |
| 49 | +$('#gst_chk_1').prop('checked', false); |
| 50 | + |
| 51 | +$('input:checkbox.stateBoxClass').each(function () { }); |
| 52 | + |
| 53 | +$(".sta_cls").css("display","block"); |
| 54 | + |
| 55 | +$(".sta_cls").css("display","none"); |
| 56 | + |
| 57 | +$("input[type=radio][name=team_for]:checked").val(); |
| 58 | + |
| 59 | +$("#member_designation").keypress(function () { }); |
| 60 | + |
| 61 | +$("input[name='gst_chk']").serializeArray(); |
| 62 | + |
| 63 | +$("#pan,#company,#address").val(''); |
| 64 | + |
| 65 | +var formData = new FormData($("#form-usermanagement")[0]); |
0 commit comments