<script type="text/javascript"> //Check if family email address has already been used.
$(document).ready(function() {
var x_timer;
$("#f_email").keyup(function (e){
clearTimeout(x_timer);
var f_email_var = $(this).val();
x_timer = setTimeout(function(){
check_f_email_ajax(f_email_var);
}, 1000);
});
function check_f_email_ajax(f_email){
$("#user-result").html('<img src="ajax-loader.gif" />');
$.post('/support/check_f_email.php', {'f_email':f_email}, function(data) {
$("#user-result").html(data);
});
}
});
</script>
<div id="registration-form">
<label for="f_email">Enter f_email :
<input name="f_email" type="text" id="f_email" maxlength="45"> <span id="user-result"></span>
</label>
</div>
Network and collaborate with thousands of CTOs, CISOs, and IT Pros rooting for you and your success.
”The time we save is the biggest benefit of E-E to our team. What could take multiple guys 2 hours or more each to find is accessed in around 15 minutes on Experts Exchange.
Our community of experts have been thoroughly vetted for their expertise and industry experience.
The Distinguished Expert awards are presented to the top veteran and rookie experts to earn the most points in the top 50 topics.