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;








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










share|improve this question






























    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










    share|improve this question


























      0












      0








      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










      share|improve this question














      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 26 at 22:22









      usernamecopied1673usernamecopied1673

      54 bronze badges




      54 bronze badges

























          1 Answer
          1






          active

          oldest

          votes


















          0














          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.






          share|improve this answer
























            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
            );



            );













            draft saved

            draft discarded


















            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









            0














            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.






            share|improve this answer





























              0














              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.






              share|improve this answer



























                0












                0








                0







                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.






                share|improve this answer













                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.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 26 at 22:46









                Cody DeckardCody Deckard

                11 bronze badge




                11 bronze badge





















                    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.



















                    draft saved

                    draft discarded
















































                    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.




                    draft saved


                    draft discarded














                    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





















































                    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







                    Popular posts from this blog

                    Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                    Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                    Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript