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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: TuZ
  • Order by date
  1. TuZ

    What's the best option for a domain name?

    netfirms.com ?
  2. TuZ

    setting newwindow to open at images dimensions

    here is what i use on my so called "gallery": 1. open a window of pre-defined size (some sort of 300x200) 2. write the code into that window that acts on that popup's load, there i catch the image's width/height & resize the window due to them.. here is a script: function...
  3. TuZ

    Return to field in form from alert box

    hi >.. id="f00" name="QTY" why do you use differnt id & name? may be that's your prob? try the same code (the code is workable) but remove/rename your id's names/ids try also document.forms instead of document
  4. TuZ

    Layer onClick

    woops ..else if (document.getElementById){ {//ie5+, netscape6+, mozilla.. there shouldn't be the second (red) bracket :) & then it works
  5. TuZ

    Indexing object... simple or impossible?

    must be smth like this: <SCRIPT language=javascript> for (i=1;i<4;i++) { document.forms[formname]['obj'+i].visible = true } </SCRIPT> but that won't work anyway :) 1. there have to go obj.style.visibility 2. even that doesn't work (may be for me only.. ;)
  6. TuZ

    How to close window by window.close() without confirmation box

    so what about activeX then? (BB, it is not about you) look: thread216-82344 :)
  7. TuZ

    Drop down menu falling behind embedded flash

    take a look: http://www.webreference.com/dhtml/diner/seethru/index.html
  8. TuZ

    Reading data from &lt;textarea&gt;

    damned!! tgml >:-< arghhh!!! function showit(){ var formnamre, theform, txtarname, thetxtar formname=&quot;fa&quot; txtarname=&quot;inneed&quot; theform=document.forms[formname] thetxtar=theform[txtarname].value thetxtar=thetxtar.split(&quot;\n&quot;) for (i=0...
  9. TuZ

    Closing popup with upper right X

    try if (popUpWindow && !popUpWindow.closed){ popUpWindow = window.open(windowURL, &quot;popUpWindow&quot;, windowFeatures ); popUpWindow.focus(); } so, when you'll close this popup, popUpWindow.closed would be true..
  10. TuZ

    alt tags for button

    it does not give the feel of button why? it gives the filling of what it look like.. make it look like a button.. are there any functionality which can provide the tags for button. if it does not exist, are there any documentations stating this? stating what? didn't got it :( what do you mean?
  11. TuZ

    I'm trying to close the browser usi

    what about activeX? *IE only* <OBJECT id=closes type=&quot;application/x-oleobject&quot; classid=&quot;clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11&quot;> <param name=&quot;Command&quot; value=&quot;Close&quot;> </object> <input type=&quot;button&quot; value=&quot;close window&quot...
  12. TuZ

    zIndex problems with IE 5.5 ?

    hi NEIL i'm afraid it is not ie feature.. take a look: http://www.webreference.com/dhtml/diner/seethru/index.html at least i didn't found any workarounds.. :)
  13. TuZ

    issues with passing variable thru url

    replace'em try this: //str - string from location.search, meaning your data str=str.replace(/\+/g,&quot; &quot;)
  14. TuZ

    Quesiton regarding dhtml and applemacs

    hie scrollarea? you mean overflow:scroll for divisions in ie on mac? my advice: DO NOT use divs on mac :) joke (but may be it is not /a joke/?) positioning on mac is VEERY weird.. on mac: in netscrap (nc4x) - just as allways, resize=reload (& your page looks like a seek scared to death...
  15. TuZ

    How to schange marked text in a textfield vith a form button

    <SCRIPT LANGUAGE=&quot;JavaScrippt&quot;> :)
  16. TuZ

    alt tags for button

    try using images instead of buttons.. i guess alt won't work on anything but images (& may be layers) in netscrap <input type=&quot;image&quot;> but afaik thus button would submit your form.. am i wrong?
  17. TuZ

    Can a web page send an email on being loaded?

    hi 1. yes 2.here: .. function mailme(){ var subj=escape(&quot;i'm hit!&quot;) var bd=escape(&quot;yea, i'm hit today!!&quot;) var str=&quot;mailto:my@address.com?subject=&quot;+subj+&quot;&body=&quot;+bd top.location.href=str } .. <body onload=&quot;mailme()&quot;> .. you of course are able to...
  18. TuZ

    How to schange marked text in a textfield vith a form button

    hie try this: ~script: function boldit(){ sel=document.selection range=sel.createRange() thetext=range.text if (thetext.length){ range.text=&quot;<b>&quot;+thetext+&quot;</b>&quot; } } .. ~form: .. <input type=button value=&quot;bold me&quot; onclick=&quot;boldit()&quot;> .. but be warned...
  19. TuZ

    writing to a .txt file

    take a look at this, Greg thread452-133643 (how to create a file on server)

Part and Inventory Search

Back
Top