PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Thursday, September 8, 2022

[FIXED] How to redirect to a view after a button click?

 September 08, 2022     ajax, javascript, jquery     No comments   

Issue

I have a some social sharing links in my HTML template. I can share to Facebook, LinkedIn, Twitter and Whatsapp, but I want to redirect to a URL (views) in Django that would give 100 points to the user that is sharing the post using the social share link.

How can I asynchronously redirect to that view in the background?

I have tried this, but it doesn't seem to work

<div class="fb-share-button" data-href="{{url_string}}" data-layout="button_count" onclick="window.open({% url 'core:social-share' %},'_blank'); return false;"></div>

These are my shareable links#

<a href="https://www.linkedin.com/shareArticle?mini=true&amp;url=https://youtube.com/user/desphixs/&amp;title=WelcomeTo{{company.name}}&amp;summary={{company.name}}&amp;source=mywebsite" target="_blank" rel="noopener">
  <small>Share on Linkedin</small>
</a>

<a class="share-linkedin text-white mr-2" href="whatsapp://send?text={{content_string}}{{url_string}}" data-action="share/whatsapp/share" target="_blank" rel="noopener">
  <small>Share on Whatsapp</small>
</a>

Solution

I do not know whether there is a way to reliably check whether a user actually shared content or just clicked your link and did nothing.

But you could send a POST to a Django endpoint which adds the 100 pts to user's points, which answers with an HTTP303 to redirect the user to another page.

A clientside solution would look the same:

  1. Send a POST to any endpoint
  2. location.href to redirect.


Answered By - Thomas Junk
Answer Checked By - Gilberto Lyons (PHPFixing Admin)
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing