Add files via upload

This commit is contained in:
Arc
2019-12-12 23:11:30 +00:00
committed by GitHub
parent b7e5bff034
commit 2e4b266648
63 changed files with 16256 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
$(document).ready(function () {
$('.num').click(function () {
var num = $(this);
var text = $.trim(num.find('.txt').clone().children().remove().end().text());
var telNumber = $('#telNumber');
$(telNumber).val(telNumber.val() + text);
});
});