Hej,
Kan jeg få dette script til at spørge om man er sikker før den handler med sletning?.
Slet / Link /href="#"
- <a href="#" id="<?php echo $id; ?>" class="delete" onclick="myFunction()">x</a>
- <script type="text/javascript">
-
-
- function myFunction()
- {
- confirm("Er du sikker ?");
- }
-
-
-
-
- $(document).ready(function() {
- $('#load').hide();
- });
-
- $(function() {
- $(".delete").click(function() {
- $('#load').fadeIn();
- var commentContainer = $(this).parent();
- var id = $(this).attr("id");
- var string = 'id='+ id ;
-
- $.ajax({
- type: "POST",
- url: "?side=config/adminsider/slideshow/sletfoto",
- data: string,
- cache: false,
- success: function(){
-
- commentContainer.slideUp('slow', function() {$(this).remove();});
- $('#load').fadeOut();
- $().toasty({
- message: "Det valgte billede bliver fjernet helt.",
- modal: true,
- autoHide: 4000,
- closeable: false
- });
- fjernerslide();
- }
-
- });
-
- return false;
- });
-
- });
-
-
- </script>