8 lines
145 B
PHP
8 lines
145 B
PHP
<script>
|
|
$('a.deleter').each(function()
|
|
{
|
|
href = $(this).attr('href');
|
|
$(this).attr('href', '###').attr('data-href', href);
|
|
})
|
|
</script>
|