123456789101112131415161718192021222324252627282930313233343536373839 |
- $('#auth').ajaxForm({
- dataType: 'json',
- success: function(data)
- {
- $.each(data, function(i, val)
- {
- if(i == 'e')
- {
- bootbox.dialog('<h3 class="red">Ошибка</h3>'+val,
- [{
- "label" : "Продолжить",
- }]
- );
- document.getElementById("captcha_img").src = home+'auth/captcha?'+Math.random();
- $('#captcha').val('');
- }
- if(i == 'i')
- {
- bootbox.dialog('<h3 class="blue">Внимание</h3>'+val,
- [{
- "label" : "Продолжить",
- }]
- );
- $('#security_code').css('display', 'table-row');
- document.getElementById("captcha_img").src = home+'auth/captcha?'+Math.random();
- $('#captcha').val('');
- }
- if(i == 's')
- location.reload();
- });
- }
- });
|