1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
.
.
.
<table>
<tr><td class="td_label"> </td><td class="td_champ"> </td></tr>
<tr class="tr_titre"><td class="td_label_titre" colspan="4"><strong>Une sortie avec une photo génère plus de visites</strong></td></tr>
<tr><td class="td_champ_photo">Choisir le fichier<br /><span>(Optionnel) Taille maximum : 5mo</span></td>
<td class="td_label"><input type="hidden" name="MAX_FILE_SIZE" value="5242880">
<input type="file" name="photo" id="photo">
</td><td class="td_label">
<a href="#"><img src="{{ asset('bundles/jimmyfront/images/ajouter_photo.png') }}" id="upload_button" /></a></td>
</tr>
</table>
.
.
.
// au clic sur le bouton upload, appel jquery
$("#upload_button").click(function() {
$.ajax({
type: 'GET',
dataType: 'json',
url: '{{ path('upload_photo') }}',
data: 'photo=' + document.getElementById('photo').value,
success: function(response)
{
/*$('#ville').find("option").remove();
$('#ville').append(new Option('Choisir une ville', ''));*/
$.each(response, function(i, item) {
/*$('#ville').append(new Option(item, i));*/
alert(item);
});
}
})
}); |
Partager