Development With A Dot

Blog on development in general, and specifically on .NET

Browse by Tags

All Tags » Web (RSS)
Number Parsing in JavaScript
How many times did you have this in your code: var str = getSomeNumber(); //say, 1212 var num = parseInt(str); window.alert('Number is: ' + num); //Number is: 1212 Nothing special about it... or is it? It happens that JavaScript's parseInt function is...
The HTML <button> Tag
Some of you may not know about the HTML <button> tag. It is part of the W3C Standard for HTML 4.01 ( http://www.w3.org/TR/html401/interact/forms.html#h-17.5 ) and has an additional feature that is not available with the ordinary <input type=...
Posted: Nov 07 2008, 04:01 PM by Ricardo Peres | with no comments
Filed under:
More Posts