I need to find website visitors (client) details using only JavaScript/jquery.Is there any way without using third party API?If not possible then any trustful third party API to get client details like machine name(optional),mobile device model name,time stamp etc.
Asked
Active
Viewed 3,173 times
3
-
1looking for this ? http://www.w3schools.com/js/js_window_navigator.asp – Punit Gajjar Sep 01 '16 at 05:22
-
1try Google analytics – Shiham Sep 01 '16 at 05:22
1 Answers
4
Yes. It is is possible. The window.navigator object contains information about the client's browser. You can get following details through window.navigator object:
- Official name of the browser.
- Internal "code" name of the current browser.
- Version of the browser.
- Battery charging status.
- Information about the network connection.
- Location of the device.
- Is Java-enabled or not.
- Preferred language of the user.
- Current operating system.
- Platform of the browser.
- Plugins installed in the browser.
- And a few others..
There are few non-standard properties as well. Refer this page on MDN: Navigator property
Source: https://developer.mozilla.org/en/docs/Web/API/Navigator

Kundan
- 61
- 8