http://home.comcast.net/~ryan_carpenter/dqsd/

This folder has a few searches I've been working on.  None are done yet, but they work as proofs of concept.  In order for the login function to work, a change to the search.html file was necesary.  Below is the section of code I altered.  The biggest problem is that the password input hides behind the button.  I hope you all can make some use of my ideas.

        document.write('<div id=primInp style="visibility:visible">'
          + (multiline ? '<textarea ' : '<input ')
          + 'name=q '
          + 'type=text '
          + 'style="top:-100; display: none;" '
          + 'class=txtfld '
          + ' '
          + ' '
          + ' '
          + ' '
          + ' '
          + ' '
          + ' '
          + (calStart ? 'ondblclick' : 'oncontextmenu') + '="return showcal();" '
          + ' '
          + ' '
          + 'value="" '
          + 'cols=20 '
          + 'rows=1 '
          + 'maxlength=256 '
          + 'tabindex=0 '
          + 'autocomplete=' + (autocomplete ? 'on' : 'off')
          + (multiline ? "></textarea>" : ">")
          + '</div><div id=secInp  style="visibility:hidden;left:30">'
          + '<input name=p type=password '
          + 'id="" '
          + 'class=txtfld '
          + ' '
          + ' '
          + ' '
          + ' '
          + ' '
          + ' '
          + ' '
          + (calStart ? 'ondblclick' : 'oncontextmenu') + '="return showcal();" '
          + ' '
          + ' '
          + 'value="" '
          + '></div>');

Reply via email to