Click to See Complete Forum and Search --> : Javascript Help


interrupt
08-02-2003, 12:48 PM
www.funsearcher.com/search.php - I need help with my search engine, I want to know if there is any javascript to make it auto submit the bottom search form? I've tried redirect using javascript:document.search.submit() as the location but it says Object doesn't support this property or method. Any ideas?

Khalid Ali
08-02-2003, 10:21 PM
Autosubmit????

well here is an idea,
create a function, say autoSubmit

in that put this line

document.formName.submit();

now call the auto submit from where ever you want to initiate the auuto submission sequence.

interrupt
08-03-2003, 09:35 AM
I've tried but it keeps saying This object isn't supported by this property or method.

Khalid Ali
08-03-2003, 10:13 AM
well in that case you are not implementing correctly....post the code

interrupt
08-03-2003, 10:22 AM
I've got it working, I forgot to put < noscript> around the submit button, now it works.