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 TouchToneTommy 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 jsLove

  1. jsLove

    Sending variable with form Action with a get method

    mtawk, i would send the variable as a hidden form field, so it would b included with the rest of the form variables sent. ex: <form action=&quot;file.html&quot; method=&quot;GET&quot; name=&quot;myform&quot; > <INPUT TYPE=&quot;text&quot; name=&quot;myinput&quot; value=&quot;yyy&quot;>...
  2. jsLove

    Clickable Table Cells

    JAG7, hmm, you mean you want the href to be variable? ....you might try: <td onClick=&quot;YourFunction(something.html)&quot;>Click Here!</td> ....this way you can pass the url link to the function. your function would be like: YourFunction(UrlLink){ parent.location.href=(UrlLink); }...
  3. jsLove

    Clickable Table Cells

    JAG7, i havent really researched it much, but i found this nifty little page: <html> <!- Written by Keith Swerling at www.TopiXonline.com <!- Clickable Table Regions, as seen on www.TopiXonline.com <!- Help me make it better KeithS@TopiXonline.com <head> <SCRIPT...
  4. jsLove

    TextArea Editing

    motte, k, got it.. will send when i have it ;) ~ jsLove
  5. jsLove

    TextArea Editing

    motte, I can prolly make ya one...wouldnt be till tomorrow or next day tho :/ i'm swamped with this html builder thingy... ..if you would like, gimme your email and i will send it to ya when i get it...who knows? i may get it workin well enough to use it... my issue with it is that im workin...
  6. jsLove

    TextArea Editing

    motte, thx for the post, i have investigated the textRange() IE javascript function, and as you mentioned, it works great in IE ...not in Netscrape. I didnt realize that this had to happen client-side...just about everything i do is javascript so it's not usually a concern. I have heard that...
  7. jsLove

    TextArea Editing

    I have no experience with cgi, tho i understand the basic concept. I have an HTML form with a TextArea inwhich users insert text to be displayed on a web page. I have been searching all over for a means to allow the user to bold any selection of text in this TextArea. I have searched and...
  8. jsLove

    Image in a new window?

    egims, what it sounds like you are after .... when you say &quot;new window&quot; it tends to mean an html document. i think, however, you may be more interested in using DHTML or commononly refered to as &quot;Layers&quot; ....there is a DHTML Forum. Hope it helps ;) ~ jsLove
  9. jsLove

    Javascripting question for java experts :-)

    RedWulf, here's what i have used in the past: <SCRIPT LANGUAGE=JavaScript> <!-- // place this in your document body where you want the image to appear: gfx0=&quot;pic01.gif&quot;; // your first img lnk0=&quot;http://www.pic01url.com&quot;; // img 1's url gfx1=&quot;pic02.jpg&quot;; // your...
  10. jsLove

    Image in a new window?

    egims, i would use this in first page (the one with the thumbnail): ---mybeautifulpic.htm is the url of the new window. ---mypicwin is just a name for the new window. <SCRIPT language=&quot;JavaScript&quot;> <!-- function img1win()...
  11. jsLove

    onKeyPress Quick Navigation in IE and Netscape

    Ever have one of those really long alphabetical lists that neither you (or your user) wants to have to scroll thru but didnt want to put an obnoxious clickable alphabet at the top of the page? I have. And with a bit of research and experimentation I came up with what I believe is an eloquent...
  12. jsLove

    setting maxlength of textarea?

    mrdance, <input type=&quot;text&quot; name=&quot;Name&quot; maxlength=&quot;20&quot;> this what youre after? Hope it helps ;) ~ jsLove
  13. jsLove

    Server Variable equivalent

    Sailorkid, hmm...i dont know much about it, but checked some resources and php and asp do that easily... other than that, this is what i found: The two most common HTTP Headers are Referer and User-Agent. An HTTP header can be obtained from the Request.ServerVariables collection using the...
  14. jsLove

    How do I do this?

    GUJUm0deL, ...well, its simple and lengthy, but ya might try something like this? function validation() {with (document.pickaformName) { if ((elements[01].checked == false) && (elements[02].checked == false) && (elements[03].checked == false)) {alert(&quot;You must select a...
  15. jsLove

    How do I do this?

    GUJUm0deL, oops, my bad...thought ya wanted to make sure that they at least checked one... ..lemme rethink it ;) Hope it helps ;) ~ jsLove

Part and Inventory Search

Back
Top