For example, some parts of a website, I can not fully tinker with HTML, put the platform locked for "security" and do not let it modify, so I use jQuery / JavaScript to do the modification I need. Does this interfere with website performance? A lot or a little?
Example of a code I used now, just to insert an image:
$j('<img src="http://i.imgur.com/UgaMSoE.png"style="max-width: 1.5rem;"/>').insertBefore('section#desejos .mywish__header a svg');
I use codes like this from time to time (not too many, only once in a while), when you can not modify something that I need. Does this influence the site performance?
Is there any problem getting jQuery / JavaScript "small" codes?