I'm trying to select values of text fields in a table, using jQuery.Select function. But it's not working. Here is it's jsFiddle: - https://jsfiddle.net/zkcxoyzL/3/
jQuery Code:
$(function(){
$("#acquisition_table").on("focus", "[type='text']", function () {
$(this).select();
});
});
It seems, it selects and automatically deselects within fraction of a second.