Recent Post
Warning: mysqli_connect(): (HY000/2002): No such file or directory in
/home1/m8f2u5e0/public_html/admin/libs/MySql.php on line
358
Warning: mysqli_query() expects parameter 1 to be mysqli, boolean given in
/home1/m8f2u5e0/public_html/admin/libs/MySql.php on line
359
Category
Is it a point of worry?
Not really, Bens Chartered Accountants would like to work closely with you to make the changes exactly as per the revised law to make sure 100% compliance and adherence to local laws and required. Feel free to drop a note or give us a call.
It is our duty to ensure compliance, completeness and provide insights to make quality decisions.
You relax and focus on your core business, we will take care of the details and make it happen for you!
$('#form-review').on('submit', function (event) {
event.preventDefault();
$.ajax({
url: '/ajax/comment.php',
type: 'post',
dataType: 'json',
data: $('#form-review').serialize(),
beforeSend: function () {
// $('#button-review').button('loading');
},
complete: function () {
// $('#button-review').button('reset');
},
success: function (json) {
$('.alert-dismissible').remove();
if (json['error']) {
$('#review').after('
' + json['error'] + '
');
}
if (json['success']) {
$('#review').after('
' + json['success'] + '
');
$('input[name=\'name\']').val('');
$('textarea[name=\'text\']').val('');
$('input[name=\'rating\']:checked').prop('checked', false);
}
}
});
});
function myFunction() {
$("#myInput").val(location.href);
var copyText = document.getElementById("myInput");
copyText.select();
document.execCommand("copy");
$('.copytextdiv').text("Copied");
}