We have some kludgy workarounds for an internal app and I was wondering which jQuery/css technique is considered faster / more efficient ...etc.
Technique A
Offsite css is the way to go. with offsite css the browser only needs to make one request which is usually pretty fast.
on the other hand whenever you modify css elements, the browser must reparse the entire dom tree which is probably more expensive.
The other important question is:
Is speed really as important here as you think it is? Maybe the difference is 45ms between these solutions, which is hardly anything you should care about. You should choose a technique which allows you to write code faster and maintain it better, thats where the real time savings will come in.