Skip to content

Comment on Ask HN: Who started something in 2013/14 which is already profitable?parent

Comments

Your product is impressive but I think you can do with this product much more valuable things.

For example, I want to specialize my landing page depends on visitors location. For example I want to change if user comes from US H1 and H2 message. Can you build something makes this possible?

You can absolutely customize your LP depending on the user's location by using http://ipinfo.io, eg:

  $.get("http://ipinfo.io", function (response) {
      if(response.country == "US") display_us_message();
      else if(response.country == "TR") display_turkey_message();
      else display_generic_message();
  }, "jsonp");
I'll send you a mail to see if you're proposing something else.
AboutSource Built by g1lg1l

Hackerly is an independent reader for Hacker News, built on the public HN API. Not affiliated with Y Combinator.