Hello there,
Thanks for stopping by, I understand the annoyance this issue can cause, as I have experienced it myself. And as much as I hate to pass the buck, so to speak, there is nothing that can be done to rectify this issue short of intercepting the webpage and rewriting certain "mis-formatted" external links. Which personally seems somewhat unethical and is a trip down a road with a slippery slope that seems to be best left untraveled.
For clarification on the issue, the problem arises when a link wishes to open a new window by using the code:
Code: Select all
<a href="http://www.externalwebsite.com" target="_blank">link</a>
This method of using the target attribute of an anchor tag has been deprecated for some time and is not recognized by the control showing the webpage. This behavior has been submitted as a bug and has been determined to behave as intended.
If a person wishes to have a link open a new window, I would recommend that the link be formatted something to the tune of:
Code: Select all
<a href="http://www.externalwebsite.com" onclick="this.newWindow=window.open('http://www.externalwebsite.com'); return false;">link</a>
Which allows for a new window to be opened if possible, as well as providing a failsafe link if a new window cannot be opened.
Hopefully this issue does not distract from your enjoyment of xFeed and in the mean time I will keep my eye open for a clean way handle this behavior. Thanks for sharing, and if you feel my assessment is off or missing something, please let me know. I would be really happy to see this issue gone as well!
