<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<!DOCTYPE html>
<html>
<body>
<input type="text" id="txt">
<button onclick="myFunction()"> Splice </button>
<ul id="demo">
</ul>
<script>
function myFunction() {
var str = document.getElementById('txt').value
var res = str.split(" ");
for (var i=0;i<res.length;i++){
document.getElementById("demo").innerHTML+= "<li>"+res[i]+"</li>";
}
}
</script>
</body>
</html>