$(document).ready(function() { $('#btn_optin').click(function(){ if ($('#nameoptin').val() == 'Họ tên (*)') { alert('Bạn hãy nhập tên!'); $('#nameoptin').focus(); $('#nameoptin').select(); return; } if (!IsEmail('emailoptin')) { alert('Bạn hãy nhập đúng định dạng email'); $('#emailoptin').focus(); $('#emailoptin').select(); return; } $.post("/ajax2.php?do=optin&act=insert",{ email : $('#emailoptin').val(), name: $('#nameoptin').val() , phone: $('#phoneoptin').val() , active: $('#ddl_active').val(), optin_type: 1 } , function(data) { alert('Bạn đã đăng ký thành công!'); }); }); // $('#btn_optin').click(function(){ }); function selectAll(theField) { $('#' + theField).focus(); $('#' + theField).select(); }