2020-01-25 10:57:13 +01:00

12 lines
406 B
JavaScript

$(document).ready(function(){
$('.delete, .regex, .collate').click(function(e) {
var li = $(this).parent("li");
var reg = li.children(".regex_input")[0].value;
var col = li.children(".collate_input")[0].value;
$.post('/index-master', {'action': $(this).attr('class'), 'kw': li.data("kw"), 'reg': reg, 'col': col}, function(d) {
if(d === 'ok') {
location.reload();
}
});
});
});