Aks_pro,
так?
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<input class='input' type="text">
<button onclick="inp();">go!</button>
<script>
function inp(){
var inp = document.querySelector('.input').value;
if(inp != ''){
alert(inp); // тут выполняется любой код
}
}
</script>
</body>
</html>