Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
B

BPDecaf

@BPDecaf
About
Posts
2
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • ok what are the rules
    B BPDecaf

    I can't recommend this book enough. "The Pragmatic Programmer: From Journeyman to Master" by Andrew Hunt and David Thomas Addison-Wesley Oct 1999 ISBN: 020161622X Cheers!

    The Lounge tutorial

  • script that autimatically enters a the specified character at a certain point in a text box
    B BPDecaf

    Suggested improvement to: a script that autimatically enters a the specified character at a certain point in a text box By webProgrammer Posted: 12 Aug 2003 This script could be improved with the addition of a line to detect and permit the use of the backspace key: function mask(str,textbox,loc,delim){ var locs = loc.split(','); for (var i = 0; i <= locs.length; i++){ for (var k = 0; k <= str.length; k++){ if (k == locs[i]){ if (str.substring(k, k+1) != delim){ if (event.keyCode != 8) //backspace str = str.substring(0,k) + delim + str.substring(k,str.length); } } } } textbox.value = str }

    Web Development tools
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups