Can you hide a html button based on user source ipHow to get client's IP address using JavaScript?How to get a user's client IP address in ASP.NET?How to create an HTML button that acts like a link?Can I make a <button> not submit a form?How can I add button on MapView androidhow to specify local modules as npm package dependenciesCan You Get A Users Local LAN IP Address Via JavaScript?Hide or show a div element based on IP addressCan you force a React component to rerender without calling setState?NPM vs. Bower vs. Browserify vs. Gulp vs. Grunt vs. WebpackMake a button appear wherever a user clicks
How does Asimov's second law deal with contradictory orders from different people?
Move arrows along a contour
A conjectural trigonometric identity
Adding a (stair/baby) gate without facing walls
How to calculate points under the curve?
What is the oxidation state of Mn in HMn(CO)5?
Word for giving preference to the oldest child
How do I respond appropriately to an overseas company that obtained a visa for me without hiring me?
Introduction to the Sicilian
What Marvel character has this 'W' symbol?
Help me, I hate squares!
Coworker mumbles to herself when working, how to ask her to stop?
How can you tell the version of Ubuntu on a system in a .sh (bash) script?
Best Ergonomic Design for a handheld ranged weapon
Create and use Object Variable
Avoiding Implicit Conversion in Constructor. Explicit keyword doesn't help here
How would a lunar colony attack Earth?
How to prevent a single-element caster from being useless against immune foes?
Just how much information should you share with a former client?
May a hotel provide accommodation for fewer people than booked?
Can machine learning learn a function like finding maximum from a list?
Why is “deal 6 damage” a legit phrase?
UX writing: When to use "we"?
Can you remove a blindfold using the Telekinesis spell?
Can you hide a html button based on user source ip
How to get client's IP address using JavaScript?How to get a user's client IP address in ASP.NET?How to create an HTML button that acts like a link?Can I make a <button> not submit a form?How can I add button on MapView androidhow to specify local modules as npm package dependenciesCan You Get A Users Local LAN IP Address Via JavaScript?Hide or show a div element based on IP addressCan you force a React component to rerender without calling setState?NPM vs. Bower vs. Browserify vs. Gulp vs. Grunt vs. WebpackMake a button appear wherever a user clicks
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
So I'm playing with an idea that I would like to only display a html button that a user can then click and download an exe if that are with a certain range of ip addresses.... The reason is I am putting together an app but depending on the users location they do not need to see certain buttons.... Anyone have any ideas or examples they can share please
Thanks
reactjs button npm ip-address
add a comment |
So I'm playing with an idea that I would like to only display a html button that a user can then click and download an exe if that are with a certain range of ip addresses.... The reason is I am putting together an app but depending on the users location they do not need to see certain buttons.... Anyone have any ideas or examples they can share please
Thanks
reactjs button npm ip-address
add a comment |
So I'm playing with an idea that I would like to only display a html button that a user can then click and download an exe if that are with a certain range of ip addresses.... The reason is I am putting together an app but depending on the users location they do not need to see certain buttons.... Anyone have any ideas or examples they can share please
Thanks
reactjs button npm ip-address
So I'm playing with an idea that I would like to only display a html button that a user can then click and download an exe if that are with a certain range of ip addresses.... The reason is I am putting together an app but depending on the users location they do not need to see certain buttons.... Anyone have any ideas or examples they can share please
Thanks
reactjs button npm ip-address
reactjs button npm ip-address
asked Mar 26 at 22:22
usernamecopied1673usernamecopied1673
54 bronze badges
54 bronze badges
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I think the best way to do this would be to serve different webpages from your server after reading the IP associated with the incoming request. That way it's pretty much invisible to the client. Something like this in Express would work.
app.get("/", (req,res) => {
if (req.ip === "127.0.0.1")
res.sendFile("index-no-exe.html")
else
res.sendFile("index-with-exe.html"
)
It's possible to do this in the browser as well. You could hide or delete the button element after retrieving their IP address from a service, but that could easily be reversed engineered. See this SO post.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55367012%2fcan-you-hide-a-html-button-based-on-user-source-ip%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I think the best way to do this would be to serve different webpages from your server after reading the IP associated with the incoming request. That way it's pretty much invisible to the client. Something like this in Express would work.
app.get("/", (req,res) => {
if (req.ip === "127.0.0.1")
res.sendFile("index-no-exe.html")
else
res.sendFile("index-with-exe.html"
)
It's possible to do this in the browser as well. You could hide or delete the button element after retrieving their IP address from a service, but that could easily be reversed engineered. See this SO post.
add a comment |
I think the best way to do this would be to serve different webpages from your server after reading the IP associated with the incoming request. That way it's pretty much invisible to the client. Something like this in Express would work.
app.get("/", (req,res) => {
if (req.ip === "127.0.0.1")
res.sendFile("index-no-exe.html")
else
res.sendFile("index-with-exe.html"
)
It's possible to do this in the browser as well. You could hide or delete the button element after retrieving their IP address from a service, but that could easily be reversed engineered. See this SO post.
add a comment |
I think the best way to do this would be to serve different webpages from your server after reading the IP associated with the incoming request. That way it's pretty much invisible to the client. Something like this in Express would work.
app.get("/", (req,res) => {
if (req.ip === "127.0.0.1")
res.sendFile("index-no-exe.html")
else
res.sendFile("index-with-exe.html"
)
It's possible to do this in the browser as well. You could hide or delete the button element after retrieving their IP address from a service, but that could easily be reversed engineered. See this SO post.
I think the best way to do this would be to serve different webpages from your server after reading the IP associated with the incoming request. That way it's pretty much invisible to the client. Something like this in Express would work.
app.get("/", (req,res) => {
if (req.ip === "127.0.0.1")
res.sendFile("index-no-exe.html")
else
res.sendFile("index-with-exe.html"
)
It's possible to do this in the browser as well. You could hide or delete the button element after retrieving their IP address from a service, but that could easily be reversed engineered. See this SO post.
answered Mar 26 at 22:46
Cody DeckardCody Deckard
11 bronze badge
11 bronze badge
add a comment |
add a comment |
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55367012%2fcan-you-hide-a-html-button-based-on-user-source-ip%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown