Skip to main content
Formatting the code for better readability
Source Link
Yves Kipondo
  • 5.7k
  • 1
  • 22
  • 33
 $(document).on('focusout', '#randmSubstationTable tbody tr td', function () {   //$('#randmSubstationTable tbody tr td') .focusout(function(){   {  $(this).parent().parent().children().index($(this).parent());   }); }); 
 $(document).on('focusout', '#randmSubstationTable tbody tr td', function () {   //$('#randmSubstationTable tbody tr td').focusout(function()   {  $(this).parent().parent().children().index($(this).parent());   } }); 
$(document).on('focusout', '#randmSubstationTable tbody tr td', function () { $('#randmSubstationTable tbody tr td') .focusout(function(){ $(this).parent().parent().children().index($(this).parent()); }); }); 
Source Link

 $(document).on('focusout', '#randmSubstationTable tbody tr td', function () { //$('#randmSubstationTable tbody tr td').focusout(function() { $(this).parent().parent().children().index($(this).parent()); } });