| 191 | if (navigator.userAgent.indexOf("MSIE") >= 0) { |
| 192 | if ('' === document.getElementById("adminbar-search").value) { |
| 193 | document.getElementById("adminbar-search").value = document.getElementById("adminbar-search").getAttribute("placeholder"); |
| 194 | document.getElementById("adminbar-search").style.color = "#ddd"; |
| 195 | } |
| 196 | document.getElementById("adminbar-search").onblur = function() { |
| 197 | if ("" === this.value) { |
| 198 | this.value = this.getAttribute("placeholder"); |
| 199 | } |
| 200 | this.style.color = "#ddd"; |
| 201 | }; |
| 202 | document.getElementById("adminbar-search").onfocus = function() { |
| 203 | if (this.value === this.getAttribute("placeholder")) { |
| 204 | this.value = ""; |
| 205 | } |
| 206 | this.style.color = ""; |
| 207 | }; |
| 208 | } |
| 209 | |