Month: May 2010

Smashing Magazine – Getting Started with Web Development For The iPhone And iPad

Web Development For The iPhone And iPad: Getting Started – Smashing Magazine: According to AdMob, the iPhone operating system makes up 50% of the worldwide smartphone market, with the next-highest OS being Android at 24%. Sales projections for the Apple iPad run anywhere from one to four million units in the first year. Like it …

Smashing Magazine – Getting Started with Web Development For The iPhone And iPad Read More »

Free iPhone Design Templates for Keynote and PowerPoint

Free iPhone Keynote and PowerPoint templates help get you from thought to finish: Mockapp.com has created both Keynote and PowerPoint templates of iPhone UI elements, and has made them available as free downloads. Say you had a dream in the middle of the night about the most awesome iPhone app that, to your surprise, no …

Free iPhone Design Templates for Keynote and PowerPoint Read More »

Preparing Your Web Content for iPad (Apple Technical Note TN2262)

Apple ~Technical Note TN2262: Preparing Your Web Content for iPad: Safari on iPad is capable of delivering a “desktop” web experience. iPad has a large, 9.7″ screen and fast network connectivity, and Safari on iPad uses the same WebKit layout engine as Safari on Mac OS X and Windows. You can ensure that your website …

Preparing Your Web Content for iPad (Apple Technical Note TN2262) Read More »

When JavaScript Conventions Aren’t Conventions

In experimenting with Dashcode last night using the introductory tutorial provided by Apple, I noticed that in their example, they build a URL dynamically: var dsource = dashcode.getDataSource(“list”); var name = dsource.selection().valueForKey(“name”); document.location = (“http://www.google.com/search?client=googlet&q=” + name); But your first thought when looking at this may be (as was mine), “what if there are spaces …

When JavaScript Conventions Aren’t Conventions Read More »

Running a javascript function after UpdatePanel.Update()

Found this forum post to be very helpful and I think I may employ this more often when doing UpdatePanel related messaging-when-done… Run a javascript function after UpdatePanel.Update() – ASP.NET Forums: … You should call the method in this way: ScriptManager.RegisterStartupScript(this.Page, this.GetType(), “MyScriptName”, “<script type=’text/javascript’>functionToCall(‘hello world’);</script>”, false); The problem could be the fact that you …

Running a javascript function after UpdatePanel.Update() Read More »