is it possible to Stop Auto refresh when Focused in input box
<input type="text" id="input_box" />
   <script>
var  StopRefresh;
    $('#input_box').focus(function(){
      clearInterval('input_box');
    });
    </script>
this is what i have so far but it does not work can some how achieve this with jquery
 
    