$(document).ready(function(){
//Nasumicne reklamacije

 $.ajax({
   type: "GET", 
   url: "/nasumicne-list.php",
   data: {'action':'update'},
   cache: false,
   complete: function(data){
       $("#nasumicne-box").html(data.responseText);
    //alert( "Data Saved: " + data.responseText );
   }
  }); 
                  

               
$('#moreRandom').click(function(){
    $.ajax({
     type: "GET", 
     url: "/nasumicne-list.php", 
     data: {'action':'update'},
     cache: false,
     complete: function(data){
         $("#nasumicne-box").html(data.responseText);
         //alert( "Data Saved: " + data.responseText );
     }
    });
});


});

