Is there a way to set an RSS feed item as a link? In other words, for each story item in the RSS feed, is there a way to make it a link? I don't want to have a link (like read more) I want to JUST have the entire story be clickable.
Is there a way to set an RSS feed item as a link? In other words, for each story item in the RSS feed, is there a way to make it a link? I don't want to have a link (like read more) I want to JUST have the entire story be clickable.
Hello! You can add needed action on Click event for any component.
How would I do that so that it opens the link that comes in from the RSS?
Hi,
You can run the following JavaScript code on click event:
codewindow.top.location = "received_URL"/code
I placed that on a click event, but it doesn't work.
Hi,
What exactly is not working? Are there any errors in console?
When I click on a link/rss-item it sends me here: http://appery.io/404.htm
Hello! Could you give us your public app link?
Hello,
Please replace "received_URL" on the following code:
pre
window.top.location = "received_URL";
/pre
with correct one. Url example: "http://appery.io".