Difference between revisions of "PHONEGAPDEVICE()"

From Lianjapedia
Jump to: navigation, search
m (Yvonne.milne moved page PHONEGAPDEVICE to PHONEGAPDEVICE() without leaving a redirect)
(No difference)

Revision as of 11:35, 21 October 2015

Purpose

Function which can be used in .rsp pages and/or server-side procedures to determine the device if the current client is a mobile device

Syntax

PHONEGAPDEVICE()

See Also

ISPHONEGAP(), ISSERVER(), PHONEGAPVERSION(), PHONEGAPPLATFORM()

Description

The PHONEGAPDEVICE() function returns the device - 'phone' or 'tablet' - if the current client is a mobile device, otherwise an empty string.

Example

do case
case phoneGapDevice() = 'phone'
   // called from phone mobile client
case phoneGapDevice() = 'tablet'
   // called from tablet mobile client
otherwise
   // not called from mobile client
endcase