var string = "Hello, this is Tigran's javascript function."
document.write(string);
function search() {
var RegExp = new RegExp(document.getElementById.input.value);
var match = string.search(RegExp);
if (match != -1) {
document.write("Found");
}
else {
document.write("Nothing found");
}
}
<input id="input" type="text"></input>
<button onclick="search()">Search</button>
Не реагирует на клик на кнопку, ничего не произходит.