Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Behrooz

  1. Behrooz

    Changing text-align in a text box

    I have this: <INPUT type=text language=javascript maxLength=50 name=Sender size=30 value=&quot;&quot; style=&quot;FONT-FAMILY: sans-serif; FONT-SIZE: 16px; TEXT-ALIGN: right;&quot;> Can I change the TEXT-ALIGN from &quot;right&quot; to &quot;left&quot; in a Javascript function?
  2. Behrooz

    combine submit and grader function into one

    Change your <input type=&quot;submit&quot; value=&quot;Submit&quot; name=&quot;B1&quot;> with <input type=&quot;button&quot; value=&quot;Submit&quot; name=&quot;B1&quot; onclick=&quot;do_the_check()&quot;> Then in do_the_check() function, do the check and if you want to submit do like...
  3. Behrooz

    How to block users from inputing into a textbox?

    Try this: <input type=&quot;text&quot; value=&quot;something&quot; Readonly> You can change the value by programming, but the user can not input.
  4. Behrooz

    plzz check this url: it isnt workin!!

    Have you checked the upper/lower case of the js file names? The server could be case sensitive.
  5. Behrooz

    Emulating Home Key in Textarea

    Thank you Paul. However, my problem was vice versa of this solution. I don't want to jump to textarea, I want to jump to &quot;Home&quot; that is the beginning of the line, when the user is in the textarea. But I don't want to user to press Home Key on the keyboard. The user clicks on the...
  6. Behrooz

    Emulating Home Key in Textarea

    To the experts: I wonder if it is possible at all. I have a textarea, and I want to create a &quot;Home key&quot; effect on this textarea , on click of a button. Like this: function OnClickofButton1() { .... document.form1.textarea1.focus(); document.form1.textarea1.[Jump to Home, as if Home...

Part and Inventory Search

Back
Top