jQuery select input hidden value inside a div

jQuery select input hidden value inside a div

Hi,
I have this html

  1.     <div class="spazio_canzoni_playlist bg-warning">
  2. <div class="orario_playlist">12:40</div>
  3. <div class="titolo_autore_codice_selezionata">TEXT - TEXT</div>
  4. <div class="aggiungi_play" rel="4157">
  5. <div class="btn btn-danger btn-md">Inserisci</div>
  6. </div>
  7. <div class="click_play_right start">
  8. <input type="hidden" class="canzone_file" value="value to find">
  9. </div>
  10.     </div>

this is my query function

  1. $('.aggiungi_play').click(function (){

  2. // find the class
  3. pulsante_aggiungi = $(this);

  4. //find the prev class where next I write a ajax content
  5. spazio_canzone = pulsante_aggiungi.prev('.titolo_autore_codice_selezionata');


  6. // find next div
  7. div_right_click = $(this).next('.click_play_right');




  8. $.ajax({

  9. type: "POST",
  10. url:"includes/query_temp_inserita_play.php",
  11. data: {id_cella_canzone_selezionata : id_cella_canzone_selezionata},
  12. dataType: "json",
  13. cache: false,

  14. success: function(scrivo_canzone){

  15. JSON.stringify(scrivo_canzone); //to string

  16. // scrivo il titolo della canzone
  17. $(spazio_canzone).html(scrivo_canzone.titolo_autore_temp);

  18. },

  19. error: function(){
  20. alert("Sovraccarico del server. Clicca ok e poi ritenta. Grazie");
  21. }


  22. })


  23. })
So I want to find the input value closest,next in this hidden input I want write my new content with ajax function.
  1. <input type="hidden" class="canzone_file" value="value to find">

So my problem is select that input file
I try with next, nextAll, find, closest but nothing

how can get it and then write in this the new value?
thanks