diff --git a/SRC/public/js/ListeOeuvre.js b/SRC/public/js/ListeOeuvre.js index 349046c..92e912b 100644 --- a/SRC/public/js/ListeOeuvre.js +++ b/SRC/public/js/ListeOeuvre.js @@ -24,5 +24,32 @@ $(document).ready( function() { ); }); }); + + $('.listeoeuvre').click(function() { + $('#oeuvrePic').empty(); + url = "/showListOeuvres/" + $(this).children('.idListeOeuvre').val(); + $.post(url, + dataSend, + function( data ) { + }, "json" ) + .done(function() { + $("#oeuvrePic").append('
' + +'' + +'
' + }) + .fail(function() { + $("#oeuvrePic").append('
' + +'Oouups! Il y a un problème.

' + +'' + +'
' + ); + }); + }); + }); +