-
Archives
-
Meta
Tag Archives: javascript
jQTouch Quick Review
This is a great overview of jQTouch from the folks at <!DOCTYPE>. If you prefer, PeepCode has a much longer, seventy (70) minute jQTouch video for $9.
Useful jQuery Plugin for UI Developers
Useful jQuery Plugin for UI Developers: Even more jQuery plugins. Several are so good, I would use them today! (Via Denbagus.)
Posted in Technology
Tagged browser, html, iphone, javascript, software, Technology, website
Leave a comment
A TweetDeck For Every Occasion
A TweetDeck For Every Occasion: This is news that I am not surprised about. If you have followed recent events, you aware of the row between Apple and Adobe. Apple has disallowed apps on their iPhone OS devices (iPhone, iPad … Continue reading
Posted in Technology
Tagged browser, html, iphone, javascript, software, Technology, website
Leave a comment
That’s getElementById not getElementByID
See the difference? I didn’t. It only cost about twenty minutes of time before I read a post that correctly pointed out that the correct function is getElementById with the last letter being lowercase, not capitalized. Technorati Tags: ministry
innerHTML is your friend
Recently, I have had an opportunity to make use of the innerHTML element of a DIV. While I admit no knowledge before a couple (that’s two) days ago, it has become a quick friend. Why? Simple, it really speeds large … Continue reading
Use Link Tag to Execute Javascript
While we are all familiar with the use of buttons (Submit, Join Now, Click Here) for all manner of executing a form, there is also the possibility of using text to accomplish the same thing. Try this: <a href=”javascript: executeFunction();”>CLICK … Continue reading
Show/Hide (toggle) an Element
If you have developed websites for more than a few minutes, you have inevitably been asked to do some cutesy stuff like adding flash, drop-down menus or toggling elements. While all of these may be ligitimate features of a site, … Continue reading