{jq} $('#delete-form').submit(function () { if (confirm(tr("Are you sure you want to permanently remove this map?"))) { $.post($(this).attr('action'), $(this).serialize(), function (data) { document.location.href = "MyMaps"; }, 'json'); } return false; }); {/jq}