This question already has answers here:
Closed 11 years ago.
Possible Duplicate:
Get Client IP using just Javascript?
Using JavaScript how can I find the IP address of the any user who clicks on my link (which shows a html page)?
I am working on a clipboard application in Java and I want the IP/computer name of the user who visits my web application link.
http://jsonip.com
Usage:
http://jsonip.com
Or:
http://jsonip.com/yourcallbackfunction
Related
This question already has answers here:
How to get client's IP address using JavaScript? [closed]
(31 answers)
Can You Get A Users Local LAN IP Address Via JavaScript?
(9 answers)
Closed 2 years ago.
I want to send them via http to api for logging pupposes. I have found several js solutions but all of them do not work, giving 'undefined' or (for ip) '127.0.0.1'.
Is there any working solution for React?
This question already has answers here:
Can a website detect when you are using Selenium with chromedriver?
(25 answers)
Chrome browser initiated through ChromeDriver gets detected
(2 answers)
Closed 4 years ago.
I am trying to crawl a couple of website pages to use their information and I can only use things like selenium that has chromium to do that
Now I am trying to hide it from the website owners because I don't want to get banned. some people are talking about changing some variable names called cdc_ inside of chromdriver and I can't understand how to do it
Also I am using python for this
EDIT : My problem is that I can't change the variable of cdc_ or any other variables in chrome driver because I don't know how
any method so I can hide the fact that I am using selenium!
Please help me here
Thank you for your time
This question already has answers here:
HTML email with Javascript [closed]
(8 answers)
Closed 4 years ago.
I am sending am email from a C# application which has html and javascript in it.
And when I checked the received mail the graphs which should be appearing after the execution of javascript code are not appearing.
I am using outlook to view the email
Is there some way to make javascript run in an email on outlook
Javascript cannot be used in emails, it's a security issue. Most of the email clients will not execute it and more will take it as an issue and remove it instantaneously.
Instead you should export your graphs as png or jpeg images to integrate them.
Hope it helps.
This question already has answers here:
Client Time shown instead of server Time in javascript
(4 answers)
Closed 9 years ago.
I want to detect that from which country and form which timezone my website is opened by user using java script or Jquery
Timezone is possible to get with Javascript alone, country is not possible without a third-party service or server-side process like GeoIP:
var timezone = new Date().toString().match(/\(([A-Z]+)\)$/).pop()
This question already has answers here:
How to enable cookies via javascript
(3 answers)
Closed 8 years ago.
Is there any way to enable browser cookies using Javascript? I need to show the user data in the form page which has filled by the user earlier. Please get me some solution to show the data which has already submitted before in the form page.
This cannot be done as it would bring security issues.