- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
var interval = setInterval(function () {
$('head').append('<style>div.gsc-input-box INPUT.bg { background-image: url(/Resources/Layout/Images/search-home.png) !important;} </style>');
input = $('div.gsc-input-box INPUT');
if (input.get().length > 0) {
if (Common.ClientInfo.isMSIE80 || Common.ClientInfo.isMSIE70) {
input.addClass('bg');
function updateInput() {
if (input.val() == '') {
input.addClass('bg');
} else {
input.removeClass('bg');
}
}
input.keyup(updateInput).keydown(updateInput).change(updateInput);
setInterval(updateInput, 300);
} else {
input.attr('placeholder', 'Поиск');
}
clearInterval(interval);
}
}, 200);