Смена цвета поля ввода сообщения в мини-чате в зависимости от количества оставшихся символов by Apocalypse для uCoz
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
<script> var me9 = $('#mchatMsgF'); me9.css('background', '#fff').css('border', '2px inset #eee').attr('title', 'У вас более 400 символов в запасе'); $('#mchatMsgF').keyup(function() { var ter45 = $('#jeuwu28').text(); if(400<ter45 && ter45<501) { me9.css('background', '#fff').attr('title', 'У вас более 400 символов в запасе'); } if(200<ter45 && ter45<400) { me9.css('background', '#ddffdd').attr('title', 'У вас более 200 символов в запасе'); } if(100<ter45 && ter45<200) { me9.css('background', '#ffccee').attr('title', 'У вас менее 200 символов в запасе'); } if(ter45<100 && ter45>30) { me9.css('background', '#ffaaaa').attr('title', 'У вас менее 100 символов в запасе'); } if(ter45<50) { me9.css('background', '#ff6666').css('border', '2px inset #eee').attr('title', 'У вас очень мало символов в запасе'); } if(ter45<1) { me9.css('background', '#ff3333').css('border', '2px inset #eee').attr('title', 'У вас не осталось символов'); } }); </script> |