For instance if we want to update url, picture or pdf and cannot update directly the url (because already posted etc). Instead of updating the source, can I update url and create a redirect from old picture/pdf url to new picture/pdf url.
$(document).ready(function () { if (
window.location.pathname
= "http://www.mywebstore.com/Page-we-want-to-skip-over.aspx") { window.location = 'http://www.mywebstore.com/Page-we-want-to-go-to-instead.aspx' } });