From: Florent Bruneau Date: Sat, 8 Nov 2008 11:53:17 +0000 (+0100) Subject: Oops, fix dynpost. X-Git-Tag: xorg/0.10.0~30 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=7cf438aa5cde1b09c60957841ec9747758f4dcc9;p=platal.git Oops, fix dynpost. Signed-off-by: Florent Bruneau --- diff --git a/htdocs/javascript/xorg.js b/htdocs/javascript/xorg.js index 959ad40..2f91124 100644 --- a/htdocs/javascript/xorg.js +++ b/htdocs/javascript/xorg.js @@ -79,7 +79,7 @@ function dynpost(action, values) form.action = action; form.method = 'post'; - $('body').appendChild(form); + $('body').get(0).appendChild(form); for (var k in values) { var input = document.createElement('input');