Я перемещаю поиск по сайтам в пользовательский поиск Google.
Старый ввод для текста выглядит так:
<input type="text" value="Search this website..." name="s" id="searchbox" onfocus="if (this.value == 'Search this website...') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Search this website...';}" />
Теперь мне нужно иметь attr 'name' как 'q', вот так:
<input type="text" value="Search this website..." name="q" id="searchbox" onfocus="if (this.value == 'Search this website...') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Search this website...';}" />
Странно, что когда я меняю имя на q, я не могу очистить окно поиска по фокусу. Я что-то упускаю супер просто?