Posts by nepster85 • 45 points
2 posts
-
4
votes3
answers767
viewsQ: Escape Single and double quotes from the text area even giving Crlt+V
// I just don’t want to let you type in single quotes and double quotes $('#bot').keypress(function (e) { var regex = new RegExp("^[a-zA-Z0-9-]+$"); var str = String.fromCharCode(!e.charCode ?…
-
0
votes1
answer79
viewsQ: Sort date on grid chronologically?
$.fn.dataTable.ext.search.push( function( settings, data, dataIndex ) { var min = $('#min-date').val() ? $('#min-date').val().split('/') : null; var max = $('#max-date').val() ?…