Event On Gridview

Hi

I try to add JS event on Grid Update

when i add it from console everything works

when in view file no reaction




<script>

$(document).ready(function(){   

    $('.product-index').on('change keydown','.grid-view',function (event) {

    if (confirm("Update?")) {

      alert("Yes!");

      return true;

    } else {

      alert("No");

      event.preventDefault();

      return false;

}    

});