<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>
Experts Exchange always has the answer, or at the least points me in the correct direction! It is like having another employee that is extremely experienced.
When asked, what has been your best career decision?
Deciding to stick with EE.
Being involved with EE helped me to grow personally and professionally.
Connect with Certified Experts to gain insight and support on specific technology challenges including:
We've partnered with two important charities to provide clean water and computer science education to those who need it most. READ MORE