From 841dbaef9050a80c4dcf13cd71ef6daf27ad4c72 Mon Sep 17 00:00:00 2001 From: Michael Foster Date: Sun, 15 Sep 2013 07:40:49 +1000 Subject: [PATCH] yeah? --- js/quick-reply.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/quick-reply.js b/js/quick-reply.js index d2d201de..0abf4be3 100644 --- a/js/quick-reply.js +++ b/js/quick-reply.js @@ -143,10 +143,10 @@ var show_quick_reply = function(){ }); // Synchronise other inputs $('form[name="post"] input[type="text"],select').bind('change input propertychange', function() { - $postForm.find('input[name="' + $(this).attr('name') + '"]').val($(this).val()); + $postForm.find('[name="' + $(this).attr('name') + '"]').val($(this).val()); }); $postForm.find('input[type="text"],select').bind('change input propertychange', function() { - $('form[name="post"] input[name="' + $(this).attr('name') + '"]').val($(this).val()); + $('form[name="post"] [name="' + $(this).attr('name') + '"]').val($(this).val()); }); };