Hello
In the "About us" module, when the social icon to facebook or twitter is clicked, I want the link to appear in the new page. What should I do?
Thank you.
htmloutput += '<a href="'+figure.getProperty('data-fb')+'" data-type="fb">Facebook</a>';
htmloutput += '<a href="'+figure.getProperty('data-twitter')+'" data-type="twitter">Twitter</a>';
htmloutput += '<a href="'+figure.getProperty('data-gplus')+'" data-type="gplus">Google+</a>';
htmloutput += '<a target="_blank" href="'+figure.getProperty('data-fb')+'" data-type="fb">Facebook</a>';
htmloutput += '<a target="_blank" href="'+figure.getProperty('data-twitter')+'" data-type="twitter">Twitter</a>';
htmloutput += '<a target="_blank" href="'+figure.getProperty('data-gplus')+'" data-type="gplus">Google+</a>';