I have seen people discussing the same Javascript getting loaded multiple times, creating problems as the code runs every time on every include.
I am including the same CSS file multiple times in the same DOM (cannot avoid adding this as I'm using some components):
<link href="style.css" rel="stylesheet" type="text/css">
- Will the DOM size increase?
- Does the CSS file get rendered every time on every include?
- Will this affect the performance of the page?
Note: As I am using the same CSS File, it is downloading only once.