iPhone startup screen not working - WHY - RESOLVED
333 views
Skip to first unread message
Brent VanderMeide
unread,
Aug 8, 2011, 8:47:43 PM8/8/11
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to jQTouch
I have seen many flail in trying to resolve this, but I finally did
and want to save you the headache. The jQTouch options allow you to
specify the 'startupScreen' option. The solution is to specify an
ABSOLUTE path or URI to the image.
BAD ( RELATIVE PATH ) :
var options = { startupScreen: 'myStartImage.png' };
var jQT = new $.jQTouch(options);
GOOD ( ABSOLUTE PATH ):
var options = { startupScreen: '/myStartImage.png' };
var jQT = new $.jQTouch(options);
or
var options = { startupScreen: 'http://.../myStartImage.png' };
var jQT = new $.jQTouch(options);
Jason Mumby
unread,
Aug 11, 2011, 2:32:47 AM8/11/11
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to jqt...@googlegroups.com
I use icon: 'HTTP://' + document.domain + '/path/to/icon/icon.png'