I have the following rss object on my page...
data.data[i].link
and it produces the following URL...
http://
I would like the URL instead to start out with...
https://
What would be the easiest way to modify this?
Thanks for any advice
I have the following rss object on my page...
data.data[i].link
and it produces the following URL...
http://
I would like the URL instead to start out with...
https://
What would be the easiest way to modify this?
Thanks for any advice
Share Improve this question edited Jun 24, 2013 at 14:41 klewis asked Jun 24, 2013 at 14:18 klewisklewis 8,35016 gold badges67 silver badges111 bronze badges 01 Answer
Reset to default 15data.data[i].link.replace('http://','https://');