Add files via upload
This commit is contained in:
Vendored
+10
@@ -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);
|
||||
});
|
||||
|
||||
});
|
||||
Reference in New Issue
Block a user