Guest User

Untitled

a guest
Jun 23rd, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <script type="text/javascript">
  2. $(document).ready(function() {
  3. $("a.remove_from_showpages").bind('click', function(){
  4. var url = $(this).attr('url');
  5. if (confirm('Vous confirmez ?')) {
  6. $.post(url, {}, "", "script");
  7. $(this).parents("tr:first").remove();
  8. }
  9. });
  10. });
  11. </script>
Add Comment
Please, Sign In to add comment