Tag Archives: webkit

Recommended Webkit

Mobile Browser Hack – Android, WebKit and Javascript/AJAX Trim() Functions!

Here’s a quick note on mobile browsers like Android, WebKit. Based on my testing, it seems that string trim() function is not supported.

I was trying to do something like:

if(mystring.trim()==”0″) etc…etc…

That won’t work in mobile browsers for some reason but you can do something like it using match instead: if(mystring.match(/0/)) etc…etc…

I don’t know exactly why trim() isn’t supported fully on mobile browsers but for those of you who have problems with your website that works on desktop browsers but

Click Here to Read Full Article

Leave a comment

iPhone Hack – How to Develop Native iPhone Apps with Javascript/HTML!

Here’s a cool iPhone dev app called PhoneGap that allows you to develop iPhone Apps with Javascript and HTML for webmasters who know nothing about C.

PhoneGap is a free open source development tool and framework that allows web developers to take advantage of the powerful features in the iPhone SDK from HTML and JavaScript. We’re trying to make iPhone app development easy and open. For many applications a web application is the way to but in Safari you don’t get access to the native iPhone APIs, and the that’s the problem we&

Click Here to Read Full Article

Leave a comment