"use strict"; $('#customerTickets').DataTable({ processing: true, serverSide: true, responsive:true, ajax:'/ticket/get-all', columns: [ { "data": "subject" }, { "data": "description" }, { "data": "status" }, { "data": "action" }, ] }); $(".textBoxClass").keypress(function (e) { // if the key pressed is the enter key if (e.which == 13) { $('#messageForm').submit(); } }); $('.fa-times').on('click', function (e){ location.href='/ticket'; });