in reply to Re: CGI ajax repeating input
in thread CGI ajax repeating input
I agree that using jQuery or any of a number of other JavaScript AJAX-type libraries on the client side would make your life a lot easier (script.aculo.us, prototype, Cappuccino, just to name a few. There are a bunch out these days).
As far as your code is concerned...your Perl looks sound and simple...although I haven't done a lot of CGI work. What about:
Does the event keycode make any difference? Do you know that the CGI script is called with each tab?<input id='inputfield' name='word' type='text' class='cmdline' autocom +plete='off' value="" onkeydown = 'if(window.event.keycode == 13){Java +Script:xmlhttpPost("/cgi-bin/test1.cgi")}' />
Also, I think your response CAN have a header...although I'm not sure it needs one...seems like I've sent back just raw text before in as an AJAX response. But that is what all the wonderful frameworks out there help nicely with.
|
|---|