Web Development
WebDev Archives
- April 2012 (2)
- March 2012 (2)
- December 2011 (8)
- November 2011 (1)
- September 2011 (16)
- August 2011 (22)
WebDev Categories
- ASP (1)
- CSS (2)
- General (33)
- HTML (3)
- JavaScript (4)
- mySQL (1)
- PHP (10)
- Snippet Library (7)
Iain's Tweets
- Manifesto for Agile Software Development http://t.co/qi4j58Hw 2012-04-07
- IE does not trap events on transparent elements! http://t.co/FMuZi26D 2012-04-07
- Pragmatic Programmer - WebDev http://t.co/7YlU250z 2012-03-31
- More updates...
Posting tweet...
Powered by Twitter Tools
WebDev Post Views
- ABBR vs ACRONYM HTML tags - 1,485 views
- Prevent Skype from formatting phone numbers - 538 views
- PHP Timeline - 440 views
- Fieldset border with hidden Legend bug in IE8 - 404 views
- The Father of JavaScript - 317 views
- Nested lists a common mistake - 306 views
- Herding Cats - 280 views
- WebDev from PC Soft - 276 views
- XBox Avatar - 241 views
- Drupal 7: Redirect after login - 224 views
WebDev Poll
Loading ...-
Recent WebDev Posts
Iain's Links
WebDev Blog Meta
Category Archives: JavaScript
Sep
8
Brendan Eich Brendan Eich (born 1961) is a computer programmer and creator of the JavaScript programming language. He is the Chief Technology Officer at the Mozilla Corporation. In early 1995 Netscape hired Brendan Eich away from MicroUnity Systems Engineering, to … Continue reading
Aug
4
The use of quotation marks in JavaScript can get confusing. JavaScript supports both single quotes (‘) and double quotes (“). myString = ‘Hello World!’; myString = “Hello World!”; myString = “It’s time for tea.”; myString = ‘It\’s time for tea.’; … Continue reading
Aug
4
JavaScript has a built-in operator called typeof. As the name suggests, it tells you what the type of a particular variable is. For example, calling typeof 1 will tell you 1 is a number, typeof “hello” will tell you “hello” … Continue reading
Aug
3
There can be some confusion over difference between null and undefined in JavaScript. Basically null is a special value that means “no value”. null is usually thought of as a special object because typeofvnull returns ‘object’. On the other hand, … Continue reading

