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 wOOdy-Soft 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: superfly404
  • Content: Threads
  • Order by date
  1. superfly404

    form field mask

    What code would I use to create a simple form field mask just like the one on ebay.com in the search field at the top of the page where it says "Start new search" I just want a script that enters that text into the form field, but makes it disappear when you click on the field.
  2. superfly404

    html #include not working

    any guess as to why my html #include is not working on my web page? www.jacobjmorris.com <!--#include file="components/top-nav.html" -->
  3. superfly404

    & character in xhtml

    What is the W3C browser standard for coding the ampersand (& symbol) when using XHTML? Thanks
  4. superfly404

    why are non-active layers editible?

    My book I'm reading on Visio says non-active layers aren't supposed to be editible, but for some reason I can change my shapes?
  5. superfly404

    css box with rounded corners?

    I have some code for a 200 px wide box, but I'm curious if I want to round the corners, I'll need to insert an image for all 4 corners...how would I do that? #sidebar-a { float: left; width: 200px; \width: 210px; w\idth: 200px; margin: 0; margin-right: 5px; padding: 5px...
  6. superfly404

    ajax

    Are there any forums dedicated to AJAX?
  7. superfly404

    javascript pop-up

    Is there a way to make this so it only pops up every 50th user? <script language="JavaScript"> <!-- function popunder() { pu = window.open("http://www.mysite.com"_blank"); pu.blur(); window.focus(); } //--> </script>
  8. superfly404

    mailto: and javascript

    i'm trying to create a nifty 404 page where a customer can send me an email by clicking a link (mailto) to let me know that the link is broken, however, rather than having them cut and paste the link into the email is there a way to setup some javascript so when the link is clicked it...
  9. superfly404

    dynamic list menu

    Is there a way to create a dynamic list menu in a form with Javascript... <form name="form1" method="post" action=""> From<select name="select"> </select> </form> Using code from an XML file like this stored in a different file? <FROM="John"></FROM> <FROM="Mary"></FROM> <FROM="Thomas"></FROM>
  10. superfly404

    can form with javascript pull data from xml file?

    I have a very simple form on my page (below) <form name="form1" method="post" action=""> From <input name="textfield" type="text" size="3" maxlength="3"> To <input name="textfield" type="text" size="3" maxlength="3"> <br> <br> <input type="submit" name="Submit" value="Submit">...
  11. superfly404

    onClick in &lt;a&gt; tag

    Will onClick work in an <a> to call a function once the link is clicked? for example: <a href="mailto:test@test.com" onclick="emailtrack()">test@test.com</a>
  12. superfly404

    hide/show div

    I have a hide show div that I need to bold the link when it's clicked to show and unbold when the link hides, any ideas what I need to change <script> function showhide(id){ if (document.getElementById){ obj = document.getElementById(id); if (obj.style.display == "none"){ obj.style.display...
  13. superfly404

    adding email body to mailto:

    I'm trying to use the following mailto: to populate the body of an email in HTML, with breaks in the copy body of the email. However, I don't want to use <br> tags since some people may have text only email. I was wondering if there is an ASCII equivalent or something, that would put breaks in...
  14. superfly404

    supporting additional hide/show div in script

    I have a script where I need to have multiple functional hide/show divs that work in the copy Here's the code I'm using: <style type="text/css"> div.code { background-color: #DDDDDD; margin: 0px 50px 0px 50px; } div.quote { margin: 0px 50px 0px 50px; background-color: #FDFFCA; }...
  15. superfly404

    confirming values in form

    i've built a simple form, where it ask for first name, last name, and phone number. (you can do a max of 9) When you click the confirm link, in theory, it should take you over to a confirm section (with onClick) where it will confirm all the info you just entered...maybe with some inner html...

Part and Inventory Search

Back
Top