%PDF- %PDF-
| Direktori : /home/bitrix/www/splash/ |
| Current File : /home/bitrix/www/splash/script.js |
$('a.subscribe_submit').click(function(){
var email = $(this).prev('input').val();
if (email.indexOf('@')>0)
{
$.get(
'/app/subscribe.php?email='+email,
function(data)
{
result = JSON.parse(data);
if (result['OK'])
$('#subscribe_result').html('Thank you! Your email was successfully added');
else
$('#subscribe_result').html('<span style="color: red">'+result['ERROR_MESSAGE']+'</span>');
$('a#subscribe_result_modal').modal("show");
}
);
}
else alert('Enter your email!');
});