How to add on key down and on key up event in java script
- by Ramesh
Hello ,
I am creating an live search for my blog..i got this from w3 schools and i need to add on keyboard up,down mouse up and down event ...
<html>
<head>
<script type="text/javascript">
function showResult(str)
{
if (str.length==0)
{
document.getElementById("livesearch").innerHTML="";
…