As can be seen from the figure, the font has changed and its size does not fit into the menu because of this, the question is how to reduce this size? as well as lost text in placeholdere?
As an option, I tried to connect separate styles for IE9 and below, but they did not connect o_O
<link href="../css/colorpicker.css" rel="stylesheet" type="text/css" /> <!--[if lte IE 9]><link rel="stylesheet" href="../css/style_ie.css" type="text/css" /<![endif]-->with placeholder tried to do so
<script type="text/javascript"> $(document).ready(function() { /* Placeholder for IE */ if($.browser.msie) { // Условие для вызова только в IE $("form").find("input[type='text']").each(function() { var tp = $(this).attr("placeholder"); $(this).attr('value',tp).css('color','#ccc'); }).focusin(function() { var val = $(this).attr('placeholder'); if($(this).val() == val) { $(this).attr('value','').css('color','#303030'); } }).focusout(function() { var val = $(this).attr('placeholder'); if($(this).val() == "") { $(this).attr('value', val).css('color','#ccc'); } }); /* Protected send form */ $("form").submit(function() { $(this).find("input[type='text']").each(function() { var val = $(this).attr('placeholder'); if($(this).val() == val) { $(this).attr('value',''); } }) }); } }); </script>but did not work: (