AmitDiwan has Published 10740 Articles

HTML Navigator javaEnabled() Method

AmitDiwan

AmitDiwan

Updated on 26-Sep-2019 11:57:07

165 Views

The HTML navigator javaEnabled() method returns a boolean value that defines whether the browser has java enable or not.SyntaxFollowing is the syntax −navigator.javaEnabled()Let us see an example of HTML navigator userAgent property −Example Live Demo    body {       color: #000;       height: 100vh;   ... Read More

HTML Navigator userAgent Property

AmitDiwan

AmitDiwan

Updated on 26-Sep-2019 11:52:57

237 Views

The HTML navigator userAgent property returns the value of the user-agent header sent by the browser to the server.SyntaxFollowing is the syntax −navigator.userAgentLet us see an example of HTML navigator userAgent property −Example Live Demo    body {       color: #000;       height: 100vh;   ... Read More

HTML Navigator product Property

AmitDiwan

AmitDiwan

Updated on 26-Sep-2019 11:49:14

128 Views

The HTML navigator product property returns the browser’s engine name.SyntaxFollowing is the syntax −navigator.productLet us see an example of HTML navigator product property −Example Live Demo    body {       color: #000;       height: 100vh;       background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%) no-repeat; ... Read More

HTML Navigator platform Property

AmitDiwan

AmitDiwan

Updated on 26-Sep-2019 11:46:12

145 Views

The HTML navigator platform property returns the browser compiled platform.SyntaxFollowing is the syntax −navigator.platformLet us see an example of HTML navigator platform property −Example Live Demo    body {       color: #000;       height: 100vh;       background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%) no-repeat; ... Read More

HTML Navigator onLine Property

AmitDiwan

AmitDiwan

Updated on 26-Sep-2019 11:43:10

224 Views

The HTML navigator onLine property returns a boolean value that defines whether the browser is online or offline.SyntaxFollowing is the syntax −navigator.onLineLet us see an example of HTML navigator onLine property −Example Live Demo    body {       color: #000;       height: 100vh;     ... Read More

HTML Navigator geolocation Property

AmitDiwan

AmitDiwan

Updated on 26-Sep-2019 11:39:46

153 Views

The HTML navigator geolocation property returns a Geolocation object that can be used to locate the user’s position.SyntaxFollowing is the syntax −navigator.geolocationLet us see an example of HTML navigator geolocation property −Example Live Demo    body {       color: #000;       height: 100vh;     ... Read More

HTML Navigator cookieEnabled Property

AmitDiwan

AmitDiwan

Updated on 26-Sep-2019 11:36:51

162 Views

The HTML navigator cookieEnabled property returns a boolean value that defines whether the cookies are enabled in the browser or not.SyntaxFollowing is the syntax −navigator.cookieEnabledLet us see an example of HTML navigator cookieEnabled property −Example Live Demo    body {       color: #000;       height: ... Read More

HTML Navigator appVersion Property

AmitDiwan

AmitDiwan

Updated on 26-Sep-2019 11:32:55

152 Views

The HTML navigator appVersion property returns the browser’s version information.SyntaxFollowing is the syntax −navigator.appVersionLet us see an example of HTML navigator appVersion property −Example Live Demo    body {       color: #000;       height: 100vh;       background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%) no-repeat; ... Read More

HTML Navigator appName Property

AmitDiwan

AmitDiwan

Updated on 26-Sep-2019 11:30:04

148 Views

The HTML navigator appName property returns the browser’s name.SyntaxFollowing is the syntax −navigator.appNameLet us see an example of HTML navigator appName property −Example Live Demo    body {       color: #000;       height: 100vh;       background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%) no-repeat;   ... Read More

HTML Navigator appCodeName Property

AmitDiwan

AmitDiwan

Updated on 26-Sep-2019 11:24:56

185 Views

The HTML navigator appCodeName property returns the browser’s code name.SyntaxFollowing is the syntax −navigator.appCodeNameLet us see an example of HTML navigator appCodeName property −Example Live Demo    body {       color: #000;       height: 100vh;       background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%) no-repeat; ... Read More

Advertisements