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 Mike Lewis 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: aljc
  • Order by date
  1. aljc

    input type=file non-CSS friendly?

    i had the same problem recently and started an identical thread which went unanswered - perhaps it's just not possible ? one possible solution which occurred to me was to not have an upload form but a normal form with a normal button ( which does behave with css ) and do it all with scripting -...
  2. aljc

    Netscape Equivalent of readyState

    also check http://developer.netscape.com/docs/manuals/communicator/jsref/evnt13.htm "In a FRAMESET and FRAME relationship, an onLoad event within a frame (placed in the BODY tag) occurs before an onLoad event within the FRAMESET (placed in the FRAMESET tag)."
  3. aljc

    Netscape Equivalent of readyState

    in the <BODY> tag of your frame source put onLoad='myfunction();' or to follow abive example you could have <head> <script> var docloaded = false; </script> </head> <body onLoad='docloaded=true;'> hope that helps
  4. aljc

    javascript and CSS classes

    thanks Trevman that was just what i was looking for great site too! al
  5. aljc

    Netscape Equivalent of readyState

    what about having <script> var docloaded = false; </script> in your <head> and setting it to true in the onLoad event ?
  6. aljc

    How can i change the mouse pointer icon to a new picture during a mous

    you can change the mouse pointer using CSS eg. style='cursor: help;' gives you a pointer with a question mark there are a number of possible cursors you can have ( check out a CSS reference website (or the html/css forum) however if you want your own image to appear as the pointer then that's...
  7. aljc

    javascript and CSS classes

    hi all, basically what i want to do is to change the attributes of a class using javascript for example .myclass { color: blue } and there are lots of elements on the page that have class=myclass Can you do somehting like myclass.color = 'red' to affect all of the elements with that class or...
  8. aljc

    CSS style for Form button

    i just read another thread with a similar problem ( table style in nn) and someone suggested trying background:#ffffff instead of background-color hope that helps
  9. aljc

    Menu In Netscape

    the mouseover/out events set this.style.bgcolor shouldn't it be this.style.background-color ?
  10. aljc

    Validating a form

    i might be wrong but at a quick look i would say: the code segment for ( // If the username is correct ) sets the location and then sets vErrors = '' which would result in the function returning a true value to the onsubmit event ( that's assuming that the execution of the function code doesn't...
  11. aljc

    css + file upload browse button

    yes but: (v.sorry - i wasn't at all clear in my question) i already tried as suggested but the problem is that whilst the text input displays with the specified style, the browse button that appears is the standard old grey button. some style attributes are followed ( if you do a...
  12. aljc

    css + file upload browse button

    does anybody know how you can apply css to the browse button you get when you create a file upload form ( <input type=file name=uploadfile> ) thanks in advance al
  13. aljc

    Chaging frame location from a pop-up window

    use window.opener to reference the &quot;window&quot; that poped up your popup
  14. aljc

    HTML forms next to each other

    try putting them in a table something like - <table> <tr> <td> <form> (code) </form> </td> <td> <form> (code) </form> </td> </tr> </table>
  15. aljc

    Scroll Bar Styles

    http://webfx.eae.net/ has nice blue scrollbars
  16. aljc

    Can I preload a HTML page?

    there's a tutorial at-> http://htmlgoodies.earthweb.com/tutors/preload.html
  17. aljc

    Submit...

    specify target in your form tag eg. <form action='whatever.cgi' target='_blank'>
  18. aljc

    Headers?

    Ask your webmaster. if you can telnet in then try whereis perl
  19. aljc

    Help sending/getting Feedback from FedEx via Perl Script

    i think you can do all that quite easily with the LWP module but as i haven't used that before and am in a bit of a rush i'm afraid i can't help more than that (you can get the lwp module from http://www.CPAN.org ) good luck
  20. aljc

    inserting text at the cursor when key pressed

    if the purpose is to turn user input into list elements you could always do it after they've left the field set onBlur to call a function which could replace any \n with \n<li> you would have to check that you weren't doing a replacment that had already been done! ( eg. \n<li> to \n<li><li> )

Part and Inventory Search

Back
Top