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 strongm 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: 99miles
  • Order by date
  1. 99miles

    Possible to give option-element multiple values?

    Well, I'm not sure why you would want to do this...there may be a better wa if you want to explain why you want to do this... but, in the meantime, the only thing I can think of that may help would be to get the name of the select. document.my_form.my_list.name mac
  2. 99miles

    Format a text box that is populated by a Select box

    Are you wanting this in javascript or ASP? It's sounding like you really want this in asp.
  3. 99miles

    Format a text box that is populated by a Select box

    <script language=&quot;javascript&quot;> function formatNumber( n ) { var areaCode = n.substring(0, 3) var prefix = n.substring(3, 6) var num = n.substring(6, 10) var phoneNumber = areaCode + &quot;-&quot; + prefix + &quot;-&quot; + num return phoneNumber } var n = '1234567890'...
  4. 99miles

    Move Parent Window

    whayda mean? you want to launch a new window but also change the url in the parent window at the same time? lemme know. mac
  5. 99miles

    Favorites folder

    only after saving them out to an html file. In IE 6 (would be similar in previous IE versions): File -> Import and Export... then use the wizard. -Mac
  6. 99miles

    date format

    Dim dtNow dtNow = Now() 'oh, back 3 hours Response.Write DateAdd(&quot;h&quot;, -3, dtNow)
  7. 99miles

    date format

    Dim dtNow dtNow = Now() Response.Write DateAdd(&quot;h&quot;, 3, dtNow)
  8. 99miles

    expanding text button

    Make a new movie clip. Put the button in the first frame. Create the animation of the button that you desire to say 10 frames in length. Add an action to the first frame: on(mouseover) { play(); } On all other frames put an action of: on(mouseout) { goToAndStop(1); } You will notice...

Part and Inventory Search

Back
Top