Skip to content

Commit ce82e5a

Browse files
authored
Update README.md
1 parent bd2e3c3 commit ce82e5a

File tree

1 file changed

+63
-0
lines changed

1 file changed

+63
-0
lines changed

README.md

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,65 @@
11
# jquery-events-functions
22
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

Comments
 (0)