Gee, maybe I shouldn't try to write DOM code from memory
darcs-hash:20080918140533-5ed1f-429c55bd99e468dc1e9d1ba4c8823f4027e94477.gz
This commit is contained in:
parent
054b4d0be6
commit
7d6c0c28df
|
@ -70,10 +70,10 @@ $(document).ready(function(){
|
|||
}};
|
||||
|
||||
function addAjaxHidden(form) {
|
||||
ajax = document.newElement('input');
|
||||
ajax.addAttribute('type', 'hidden');
|
||||
ajax.addAttribute('name', 'ajax');
|
||||
ajax.addAttribute('value', 1);
|
||||
ajax = document.createElement('input');
|
||||
ajax.setAttribute('type', 'hidden');
|
||||
ajax.setAttribute('name', 'ajax');
|
||||
ajax.setAttribute('value', 1);
|
||||
form.appendChild(ajax);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user