resume/src/Sikofitt/js/resume.js

36 lines
1.2 KiB
JavaScript
Raw Normal View History

2016-07-12 11:11:11 -07:00
jq = jQuery.noConflict();
jq(document).ready(function (jq) {
jq('form#recaptcha').on('submit', function (event) {
2016-07-11 14:56:40 -07:00
event.stopImmediatePropagation();
event.stopPropagation();
2016-07-12 11:11:11 -07:00
jq.post(jq(this).attr('action'), jq(this).serialize(), function (response) {
2016-07-11 14:56:40 -07:00
data = JSON.parse(response);
if (false === data.valid) {
data.message.every(function (d) {
UIkit.notify('<i class="uk-icon-medium uk-icon-frown-o uk-icon-justify"></i> ' + d, {
pos: 'bottom-center',
status: 'danger'
});
2016-07-12 11:11:11 -07:00
});
2016-07-11 14:56:40 -07:00
} else if (true === data.valid) {
2016-07-12 11:11:11 -07:00
var divRoot = jq('<div />'),
h1 = jq('<h1 />'),
href = jq('<a />'),
phone = jq('.hidden-phone');
2016-07-11 14:56:40 -07:00
href
.attr('href', 'tel:' + data.message.phone)
.text(data.message.phone);
h1.append(href);
phone.attr('href', 'tel:' + data.message.phone);
phone.text(data.message.phone);
divRoot.append(h1);
2016-07-12 11:11:11 -07:00
jq('#recaptcha-wrapper').replaceWith(divRoot);
2016-07-11 14:56:40 -07:00
}
});
});
});