|
|
@@ -281,7 +281,6 @@ var fnSubmitPoll = function () {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- console.log(pollQsq_20);
|
|
|
var data = {pollQsq_10 : pollQsq_10,
|
|
|
pollQsq_20 : pollQsq_20,
|
|
|
pollQsq_30 : pollQsq_30,
|
|
|
@@ -335,6 +334,20 @@ $(document).ready( function() {
|
|
|
$('#ans_cnt').html("(<em class='c_primary'>1000</em>/1000자)");
|
|
|
}
|
|
|
});
|
|
|
+
|
|
|
+ $('.etc_input').keyup(function (e){
|
|
|
+ var content = $(this).val();
|
|
|
+ if (content.length > 50){
|
|
|
+ $(this).val(content.substring(0, 50));
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ $('.form_control').keyup(function (e){
|
|
|
+ var content = $(this).val();
|
|
|
+ if (content.length > 50){
|
|
|
+ $(this).val(content.substring(0, 50));
|
|
|
+ }
|
|
|
+ });
|
|
|
|
|
|
|
|
|
$('.ev .survey_wrap .survey_con .survey_row input[type="radio"]').change(function(){
|