Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does jquery makes the browser slow?

I'm using jQuery in my web page. Will this make the web page to load contents slow?

Using jQuery is advantage than JavaScript or not why?...

like image 992
Murugesh Avatar asked Dec 03 '22 06:12

Murugesh


1 Answers

Inspect your page with Firebug and YSlow to see where the bottleneck actually is.

Generally speaking, JS does make your page load slower. However, on modern machines and with modern Internet connection speeds this delay is not even noticeable. However, excessive use of JS can potentially make your page operate slower.

like image 168
Anton Gogolev Avatar answered Dec 18 '22 13:12

Anton Gogolev