A file is referenced a lot, I want to change name, can I automatically update all the places it was referenced to the new name?
Imagine that you have an image which is referenced in multiple HTML documents and for whatever reason you want to change it's name or position, do you have to go and update the source to the new name and path in every single place it had been referenced? Is there any way to automatically do that? I already had an idea about how to go about doing this, I was thinking I could perhaps link a JavaScript file to every single HTML document, check all images and update the ones matching the src that the image previously had, I guess this should worked, but it would take me some time to link the JavaScript file to every single HTML document, is there perhaps any way I could automatically link the JavaScript file to every HTML document? So I don't have to do it one by one?