(function($) { $(function() { $("#domain_checknow").click(function() { if ($('#domain_text').val().length == 0) { $('#domain_checkresults').html("
Domain name is required.
"); } else { $.ajax({ url: 'https://tribedomains.com/wp-content/plugins/domain-checker/check.php', data: { d: $('#domain_text').val() }, context: $('#domain_checkresults') }).done(function(msg) { $(this).html(msg); }); } }); }); })(jQuery);