|
|
|
|
jQuery 1.3 : Effects - Basic hide and show |
The basic .hide() and .show() methods, without any parameters, can be thought of as smart shorthand methods for .css('display','string'), where'string' is the appropriate display value. |
|
jQuery 1.3 : Effects - Inline CSS modification |
This method acts as both a getter and a setter. To get the value of a style property, we simply pass the name of the property as a string, like .css('backgroundColor'). Multi-word properties can be interpreted by jQuery when hyphenated, as they are in CSS notation, or camel-cased, as they are in DOM notation. |
|
Mobile Web Apps : Events |
The DOM click event comprises two separate steps: a mousedown, followed by a mouseup. Evidently, it’s an event designed for a mouse, where clicking takes just a fraction of a second, and is done after the user has moved the mouse into the correct position. |
|
Mobile Web Apps : Setting up Shop |
As a first pass for app-ifying our mobile website, we’ll set up our environment, hook up a couple of common DOM events, and use the native-like features gifted to us for some gratifying “quick wins.” These should help us get well on the way to creating a usable app that we can build on with more advanced features. |
|
iPhone 3D Programming : Simplify with glDrawTexOES |
Recall that updating the VBO at every frame and computing texture coordinates was a bit of a pain; it turns out the iPhone supports an easier way to render pixel rectangles when you’re using OpenGL ES 1.1. |
|
iOS SDK : Adding a SQLite Database |
Adding binary data using SQLite Manager in Firefox seems to be buggy. Sometimes it works, sometimes not. If after adding a record the photo column is blank, just edit the row and add the photo file’s content again. |
|
|
|
|
|
|
iPad : 3G Cellular Data Connection |
If you have a 3G iPad, you will also be able to connect to the cellular data network – the same network you connect to with an iPhone or other mobile phone. |
|
|
|
|
|
|
|
|
|
|
|
Fundamentals of Java ME MIDP Programming : Non-GUI APIs in MIDP |
MIDP provides a simple record-based persistent storage mechanism known as the Record Management System (RMS). It's a package that allows the MIDlet application to store persistent data within a controlled environment, while maintaining system security. |
|
|
iPad : Wi-Fi Connections |
Every iPad comes with Wi-Fi capability built in. If you have a 3G model (you can tell it's 3G because there is a black plastic strip along the top edge), then you have both 3G and Wi-Fi |
|
|