|
|
|
|
@ -146,14 +146,24 @@ |
|
|
|
|
<script> |
|
|
|
|
$(function(){ |
|
|
|
|
$('#form1').on('submit', function(e){ |
|
|
|
|
$('#form2 :input').not(':submit').clone().hide().appendTo(this); |
|
|
|
|
$('#form3 :input').not(':submit').clone().hide().appendTo(this); |
|
|
|
|
return true; |
|
|
|
|
if($('#form2').serialize() !== ""){ |
|
|
|
|
$('#form2 :input').not(':submit').clone().hide().appendTo(this); |
|
|
|
|
$('#form3 :input').not(':submit').clone().hide().appendTo(this); |
|
|
|
|
return true; |
|
|
|
|
}else{ |
|
|
|
|
e.preventDefault(); |
|
|
|
|
alert({%trans "Выберите тематику!" %}); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
$('#form3').on('submit', function(e){ |
|
|
|
|
$('#form2 :input').not(':submit').clone().hide().appendTo(this); |
|
|
|
|
$('#form1 :input').not(':submit').clone().hide().appendTo(this); |
|
|
|
|
return true; |
|
|
|
|
if($('#form2').serialize() !== ""){ |
|
|
|
|
$('#form2 :input').not(':submit').clone().hide().appendTo(this); |
|
|
|
|
$('#form1 :input').not(':submit').clone().hide().appendTo(this); |
|
|
|
|
return true; |
|
|
|
|
}else{ |
|
|
|
|
e.preventDefault(); |
|
|
|
|
alert({%trans "Выберите тематику!" %}); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
/* |
|
|
|
|
$('button').on('click', function(e){ |
|
|
|
|
|