Quote Originariamente inviata da cavicchiandrea Visualizza il messaggio
L'evento click č racchiuso nel ready giusto?
Si esatto, per completezza riporto l'intero JavaScript, la funzione che mi interessa č l'ultima:
Ho fatto ulteriori modifiche alla funzione che sembrano non andare bene.

codice:
$(document).ready(function(){    
    //Aggiungere un campo
    $("#selectimpianto").click(function(){
        
        impianto=document.getElementById("selectimpianto").value;
        
    $.ajax({
         url : "EventiController",
         type: 'POST',
         dataType: "html",
         data: {action:"getimpianto",impianto:impianto},
         
         
         success: function(data){
                  $("#selectcampo").html(data);
         },
         
            error: function (xhr, status, error) {
            alert(error);
        }
         
     });
    });
    
    
    //quando aggiungo evento visualizzo lo sport dopo la selezione del campo
    //Aggiungere un evento
    $("#selectcampo").click(function(){
        
        campo=document.getElementById("selectcampo").value;
        impianto=document.getElementById("selectimpianto").value;
        
    $.ajax({
         url : "EventiController",
         type: 'POST',
         dataType: "html",
         data: {action:"getsport",campo:campo, impianto:impianto},
         
         
         success: function(data){
                  $("#selectsport").html(data);
         },
         
            error: function (xhr, status, error) {
            alert(error);
        }
         
     });
    });
            
            
            
                  //mostra listaeventi utente dopo click su bottone
    $("#eventibyuser").on('click', function(){
        
    $.ajax({
         url : "EventiController",
         type: 'POST',
         dataType: "html",
         data: {action:"geteventibyuser"},
         
         
         success: function(data){
                  $("#listaeventi").html(data);
         },
         
            error: function (xhr, status, error) {
            alert(error);
        }
    });
    
    });
    
    
    
        
   
        //agigungere un evento
        $("#aggiungievento").on('click', function(){
        
        campo=document.getElementById("selectcampo").value;
        impianto=document.getElementById("selectimpianto").value;


            data=document.getElementById("data").value;
            ora=document.getElementById("ora").value;
            sport=document.getElementById("selectsport").value;


        
    $.ajax({
        
         url : "EventiController",
         type: 'POST',
         dataType: "html",
         data: {action:"fine",campo:campo, impianto:impianto, data:data, ora:ora, sport:sport},
         
         
         success: function(data){
                  $("#eventoaggiunto").html(data);
         },
         
            error: function (xhr, status, error) {
            alert(error);
        }
         
     });
    });
    
    
    
    
    //rimuovere evento
        $(".rimuovievento").click(function() {


        idevento=$(this).attr("value");
       
        
        
    $.ajax({
        
         url : "EventiController",
         type: 'POST',
         dataType: "html",
         data: {action:"rimuovi", idevento:idevento},
         
         
         success: function(data){
                  $("#eventorimosso").html(data);
                  alert("OK");
         },
         
            error: function (xhr, status, error) {
            alert(error);
        }
         
     });
    });
    
    
    
    
    


    
    
    
        
    
});