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 tellersix

  1. tellersix

    subtle browser detection

    i need to detect the difference between explorer 5.0 and 5.1, the browser checker in DWMX is not able to do this. Is there a way to alter the code or an extenstion that would allow for more sensitive detection?
  2. tellersix

    if then browser code works great! need platform detection as well

    jammer 1221 i gave you a star because i really appreciate the effort you put into answering my question, it means a lot to me. it is because of this appreciation that it is diffucult for me to say that the code above results in the same window size when opened on a mac or windows machine (for...
  3. tellersix

    if then browser code works great! need platform detection as well

    i am lost, though eager to find my way. let me re phrase what my goal is here. forgive my lack of knowledge i am learning as fast as can. i need to resize my window on load i need the window to ask: is this user running windows or mac? if the user is running a mac i need the window to resize...
  4. tellersix

    if then browser code works great! need platform detection as well

    WOULD IT LOOK LIKE THIS? I GUESS I'M CURIOUS: IS IT POSSIBLE TO HAVE AN "IF THEN" STATEMENT EMBEDED WITH IN AN "IF THEN" STATEMENT? if (navigator.platform == "Win32")   //  if ( document.all )     window.resizeTo(100,200); // IE size else    ...
  5. tellersix

    if then browser code works great! need platform detection as well

    THIS CODE WORKS GREAT BUT I NEED TO EXPAND IT TO ACCOUNT FOR PLATFORM AS WELL AS BROWSER. <SCRIPT LANGUAGE=&quot;Javascript&quot;> if ( document.all ) window.resizeTo(369,500); // IE size else window.resizeTo(369,500); // others </SCRIPT> SOMETHING LIKE THIS EXAMPLE WRITTEN IN LAYMAN'S...
  6. tellersix

    explorer resize window woes

    right exactly, i haven't expierimented to locate the exact smallest size i can acheive, but it does appear that 277 is too small. i have never seen something like this, it baffles me, and this site is a hop skip and a jump away from being done, getting hung up by something so weird and small is...
  7. tellersix

    explorer resize window woes

    i have a gallery page where it became necessary to create pop ups for each thumbnail, and each pop up window needed to fit the image exactly. so i used this little script below. (i know the sizes are the same for I.E. and other browsers, but that was the only way i could get this to work) it...
  8. tellersix

    how to: on load detect browser then resize

    i need a script that will detect the browser on load and consequently resize the window to one size if explorer and a different size if navigator. i hope this question is not to elementary. thanks for your help.
  9. tellersix

    onmouseup if then browser detection

    i think my first post was too wordy and did not convey my true lack of knowledge. so here is the function i desire in lay man's terms. i need code that does this: on mouse up check browser. if internet explorer, open example.html in new window with dimentions 100 by 200. if netscape navigator...
  10. tellersix

    onmouseup if then browser detection

    thanks but i need a little more in depth information, i am a beginer.
  11. tellersix

    onmouseup if then browser detection

    i have a gallery page where each thumbnail opens a larger image in it's own pop up window. that part works fine onmouseup the new window opens to the exact size of the image it contains. ( i know somepeople find this annoying, but i need each image to be it's own object, trust me it doesn't...
  12. tellersix

    is it possible to make table hieght autostretch

    basically what i envision is a page with a bar of color that runs across the entire bottom of the browser window no matter the screen size. and when ever the window becomes too small for the content i would want scroll bars to come into play so that my available content space is infinite and the...
  13. tellersix

    i want to completely unlock pages built off template.

    solved it, here's how for any fellow novice developers whom it may help. the problem was i had some javascript that was loading random background images from a list of gifs. this code wasn't visually represented in the wysiwyg view of the site, and when i tried to make the code an editable...
  14. tellersix

    tables and pop up menus aren't mixing well? i need them to.

    solved it, here's how for anyone who needs the same fix. i just set up the popup menus in gifs in a layer outside of the table, then copied the gifs into the table, which erased all my menu information for some reason, then went into the code and refilled the information. presto expandable...
  15. tellersix

    is it possible to make table hieght autostretch

    is it possibe to make table hieght autostretch

Part and Inventory Search

Back
Top