Pages
-
Recent Posts
Categories
Links
Meta
Monthly Archives: August 2010
Joomla mod_mainmenu: Add separator images between menu items
I see a lot of forum posts complaining about Joomla’s built in menu module not being able to support adding images for your separator menu items. The root cause of this is that the menu module uses a span to … Continue reading
Button or Input Tag – which to use?
Any user interaction with a web page is done with forms. One question about the various elements of a form is whether to use a “button” or an “input” tag; both basically do the same thing, sort of, and that’s … Continue reading
Posted in HTML
Leave a comment
JavaScript Reserved Words
Variable names in JavaScript can contain letters, numbers, underscores, and the dollar sign. So a stand alone “$” is a legal variable. You can not start with a number, and names are case-sensitive. This list includes all reserved words, global … Continue reading
JavaScript and added Semicolons
JavaScript has a feature that causes more problems to programmers than it helps, that is its automatic insertion of semicolons, if you happen to forget one. Boo. Almost all programming languages today, i.e. C, C++, C#, CSS, PHP, and Java … Continue reading