diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2008-09-18 10:07:56 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2008-09-18 10:07:56 -0400 |
commit | 4520daac3e2e58c6bd0bdc93cef964ee22be9f37 (patch) | |
tree | 243ffe82f9fb1ab934ff4ac827c9d155bc2fc2b7 | |
parent | 7d6c0c28df842a170c2b7587560c857143822eb9 (diff) |
ah, turns out each() stuff is called as a method
darcs-hash:20080918140756-5ed1f-800912781c9b34d4490cef462ad32a6afa7e799c.gz
-rw-r--r-- | js/util.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/js/util.js b/js/util.js index a699f4e90..0f2e365c3 100644 --- a/js/util.js +++ b/js/util.js @@ -69,12 +69,12 @@ $(document).ready(function(){ $('form#'+id).replace(new_form); }}; - function addAjaxHidden(form) { - ajax = document.createElement('input'); + function addAjaxHidden() { + var ajax = document.createElement('input'); ajax.setAttribute('type', 'hidden'); ajax.setAttribute('name', 'ajax'); ajax.setAttribute('value', 1); - form.appendChild(ajax); + this.appendChild(ajax); } $("form.favor").ajaxForm(favoptions); |