How can I “Reduce JavaScript execution time” of external scripts?
up vote
1
down vote
favorite
I have the feeling that there is not much I can do, but I thought I'd ask the question and see if I missed something.
How can I "Reduce JavaScript execution time" of external scripts?
When I use the PageSpeed Insights tool, my current score is 56, and one of the biggest things seems to be a problem with the execution time of some external scripts. And their caching... but that's different issue.
https://load.sumo.com
Total: 733 ms
Script Evaluation: 587 ms
Script Parse: 128 ms
https://sumo.b-cdn.net/virtual/####/client/js/services/services.js
Total: 436 ms
Script Evaluation: 212 ms
Script Parse: 90 ms
https://connect.facebook.net/signals/config/###?v=2.8.33&r=stable
Total: 215 ms
Script Evaluation: 160 ms
Script Parse: 53 ms
https://static.leadpages.net/leadboxes/current/embed.js
Total: 133 ms
Script Evaluation: 123 ms
Script Parse: 10 ms
...
javascript wordpress performance seo
add a comment |
up vote
1
down vote
favorite
I have the feeling that there is not much I can do, but I thought I'd ask the question and see if I missed something.
How can I "Reduce JavaScript execution time" of external scripts?
When I use the PageSpeed Insights tool, my current score is 56, and one of the biggest things seems to be a problem with the execution time of some external scripts. And their caching... but that's different issue.
https://load.sumo.com
Total: 733 ms
Script Evaluation: 587 ms
Script Parse: 128 ms
https://sumo.b-cdn.net/virtual/####/client/js/services/services.js
Total: 436 ms
Script Evaluation: 212 ms
Script Parse: 90 ms
https://connect.facebook.net/signals/config/###?v=2.8.33&r=stable
Total: 215 ms
Script Evaluation: 160 ms
Script Parse: 53 ms
https://static.leadpages.net/leadboxes/current/embed.js
Total: 133 ms
Script Evaluation: 123 ms
Script Parse: 10 ms
...
javascript wordpress performance seo
1
Where are you loading the scripts? if you are loading them in the page header then they are blocking and that's a big problem. If you are loading them in the body there are optimizations that can be made, such as loading them in parallel and pre-fetching. But you are correct that there is no way to make the script do less work. All you can do is optimize when that work is done, or, remove the script and not do the work at all.
– Matthew Herbst
Nov 22 at 1:52
The scripts are loaded "correctly". Now I am just trying to understand if there is anything I can do about the JavaScript execution time, but it doesn't sound like it.
– InsuredApple
Nov 22 at 2:29
I'm not doubting that they are loading correctly. I'm saying that depending on how you load them, you can optimize how long they take to parse and execute. Parsing of the scripts is a big part of that score and can cause the user lag if it takes too long and isn't handled properly. Again, I would suggest you to please show us how you are loading the scripts, and we might be able to help you greatly reduce how much of a performance impact they have on the page, which is what it sounds like you really care about.
– Matthew Herbst
Nov 22 at 2:31
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I have the feeling that there is not much I can do, but I thought I'd ask the question and see if I missed something.
How can I "Reduce JavaScript execution time" of external scripts?
When I use the PageSpeed Insights tool, my current score is 56, and one of the biggest things seems to be a problem with the execution time of some external scripts. And their caching... but that's different issue.
https://load.sumo.com
Total: 733 ms
Script Evaluation: 587 ms
Script Parse: 128 ms
https://sumo.b-cdn.net/virtual/####/client/js/services/services.js
Total: 436 ms
Script Evaluation: 212 ms
Script Parse: 90 ms
https://connect.facebook.net/signals/config/###?v=2.8.33&r=stable
Total: 215 ms
Script Evaluation: 160 ms
Script Parse: 53 ms
https://static.leadpages.net/leadboxes/current/embed.js
Total: 133 ms
Script Evaluation: 123 ms
Script Parse: 10 ms
...
javascript wordpress performance seo
I have the feeling that there is not much I can do, but I thought I'd ask the question and see if I missed something.
How can I "Reduce JavaScript execution time" of external scripts?
When I use the PageSpeed Insights tool, my current score is 56, and one of the biggest things seems to be a problem with the execution time of some external scripts. And their caching... but that's different issue.
https://load.sumo.com
Total: 733 ms
Script Evaluation: 587 ms
Script Parse: 128 ms
https://sumo.b-cdn.net/virtual/####/client/js/services/services.js
Total: 436 ms
Script Evaluation: 212 ms
Script Parse: 90 ms
https://connect.facebook.net/signals/config/###?v=2.8.33&r=stable
Total: 215 ms
Script Evaluation: 160 ms
Script Parse: 53 ms
https://static.leadpages.net/leadboxes/current/embed.js
Total: 133 ms
Script Evaluation: 123 ms
Script Parse: 10 ms
...
javascript wordpress performance seo
javascript wordpress performance seo
asked Nov 22 at 1:51
InsuredApple
166
166
1
Where are you loading the scripts? if you are loading them in the page header then they are blocking and that's a big problem. If you are loading them in the body there are optimizations that can be made, such as loading them in parallel and pre-fetching. But you are correct that there is no way to make the script do less work. All you can do is optimize when that work is done, or, remove the script and not do the work at all.
– Matthew Herbst
Nov 22 at 1:52
The scripts are loaded "correctly". Now I am just trying to understand if there is anything I can do about the JavaScript execution time, but it doesn't sound like it.
– InsuredApple
Nov 22 at 2:29
I'm not doubting that they are loading correctly. I'm saying that depending on how you load them, you can optimize how long they take to parse and execute. Parsing of the scripts is a big part of that score and can cause the user lag if it takes too long and isn't handled properly. Again, I would suggest you to please show us how you are loading the scripts, and we might be able to help you greatly reduce how much of a performance impact they have on the page, which is what it sounds like you really care about.
– Matthew Herbst
Nov 22 at 2:31
add a comment |
1
Where are you loading the scripts? if you are loading them in the page header then they are blocking and that's a big problem. If you are loading them in the body there are optimizations that can be made, such as loading them in parallel and pre-fetching. But you are correct that there is no way to make the script do less work. All you can do is optimize when that work is done, or, remove the script and not do the work at all.
– Matthew Herbst
Nov 22 at 1:52
The scripts are loaded "correctly". Now I am just trying to understand if there is anything I can do about the JavaScript execution time, but it doesn't sound like it.
– InsuredApple
Nov 22 at 2:29
I'm not doubting that they are loading correctly. I'm saying that depending on how you load them, you can optimize how long they take to parse and execute. Parsing of the scripts is a big part of that score and can cause the user lag if it takes too long and isn't handled properly. Again, I would suggest you to please show us how you are loading the scripts, and we might be able to help you greatly reduce how much of a performance impact they have on the page, which is what it sounds like you really care about.
– Matthew Herbst
Nov 22 at 2:31
1
1
Where are you loading the scripts? if you are loading them in the page header then they are blocking and that's a big problem. If you are loading them in the body there are optimizations that can be made, such as loading them in parallel and pre-fetching. But you are correct that there is no way to make the script do less work. All you can do is optimize when that work is done, or, remove the script and not do the work at all.
– Matthew Herbst
Nov 22 at 1:52
Where are you loading the scripts? if you are loading them in the page header then they are blocking and that's a big problem. If you are loading them in the body there are optimizations that can be made, such as loading them in parallel and pre-fetching. But you are correct that there is no way to make the script do less work. All you can do is optimize when that work is done, or, remove the script and not do the work at all.
– Matthew Herbst
Nov 22 at 1:52
The scripts are loaded "correctly". Now I am just trying to understand if there is anything I can do about the JavaScript execution time, but it doesn't sound like it.
– InsuredApple
Nov 22 at 2:29
The scripts are loaded "correctly". Now I am just trying to understand if there is anything I can do about the JavaScript execution time, but it doesn't sound like it.
– InsuredApple
Nov 22 at 2:29
I'm not doubting that they are loading correctly. I'm saying that depending on how you load them, you can optimize how long they take to parse and execute. Parsing of the scripts is a big part of that score and can cause the user lag if it takes too long and isn't handled properly. Again, I would suggest you to please show us how you are loading the scripts, and we might be able to help you greatly reduce how much of a performance impact they have on the page, which is what it sounds like you really care about.
– Matthew Herbst
Nov 22 at 2:31
I'm not doubting that they are loading correctly. I'm saying that depending on how you load them, you can optimize how long they take to parse and execute. Parsing of the scripts is a big part of that score and can cause the user lag if it takes too long and isn't handled properly. Again, I would suggest you to please show us how you are loading the scripts, and we might be able to help you greatly reduce how much of a performance impact they have on the page, which is what it sounds like you really care about.
– Matthew Herbst
Nov 22 at 2:31
add a comment |
1 Answer
1
active
oldest
votes
up vote
3
down vote
You won't have any control over what those external scripts do. Short of not including them, about the only thing you can do is defer their loading.
One way to do this is with the defer
attribute.
<script defer src="https://example.com/script.js"></script>
This allows the page to continue to load and execute while the script is loaded and executed later. This method doesn't work with all scripts, but it will work with most. Many of the script tags you include from providers, such as Facebook, will already have alternative code which defers their loading.
See also: https://flaviocopes.com/javascript-async-defer/
Thanks Brad. I've got the scripts deferred already, so that's good. I suppose that's the cost of having the functionality then.
– InsuredApple
Nov 22 at 2:28
@InsuredApple Yes. If you are a big enough fish, you can try to go yell at the people who made the scripts and get them to optimize things. Chances are though, they're already looking at the load and execution times and have optimized them quite a bit. I know for sure that Facebook is always working on optimizing their SDKs, for example.
– Brad
Nov 22 at 2:29
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
3
down vote
You won't have any control over what those external scripts do. Short of not including them, about the only thing you can do is defer their loading.
One way to do this is with the defer
attribute.
<script defer src="https://example.com/script.js"></script>
This allows the page to continue to load and execute while the script is loaded and executed later. This method doesn't work with all scripts, but it will work with most. Many of the script tags you include from providers, such as Facebook, will already have alternative code which defers their loading.
See also: https://flaviocopes.com/javascript-async-defer/
Thanks Brad. I've got the scripts deferred already, so that's good. I suppose that's the cost of having the functionality then.
– InsuredApple
Nov 22 at 2:28
@InsuredApple Yes. If you are a big enough fish, you can try to go yell at the people who made the scripts and get them to optimize things. Chances are though, they're already looking at the load and execution times and have optimized them quite a bit. I know for sure that Facebook is always working on optimizing their SDKs, for example.
– Brad
Nov 22 at 2:29
add a comment |
up vote
3
down vote
You won't have any control over what those external scripts do. Short of not including them, about the only thing you can do is defer their loading.
One way to do this is with the defer
attribute.
<script defer src="https://example.com/script.js"></script>
This allows the page to continue to load and execute while the script is loaded and executed later. This method doesn't work with all scripts, but it will work with most. Many of the script tags you include from providers, such as Facebook, will already have alternative code which defers their loading.
See also: https://flaviocopes.com/javascript-async-defer/
Thanks Brad. I've got the scripts deferred already, so that's good. I suppose that's the cost of having the functionality then.
– InsuredApple
Nov 22 at 2:28
@InsuredApple Yes. If you are a big enough fish, you can try to go yell at the people who made the scripts and get them to optimize things. Chances are though, they're already looking at the load and execution times and have optimized them quite a bit. I know for sure that Facebook is always working on optimizing their SDKs, for example.
– Brad
Nov 22 at 2:29
add a comment |
up vote
3
down vote
up vote
3
down vote
You won't have any control over what those external scripts do. Short of not including them, about the only thing you can do is defer their loading.
One way to do this is with the defer
attribute.
<script defer src="https://example.com/script.js"></script>
This allows the page to continue to load and execute while the script is loaded and executed later. This method doesn't work with all scripts, but it will work with most. Many of the script tags you include from providers, such as Facebook, will already have alternative code which defers their loading.
See also: https://flaviocopes.com/javascript-async-defer/
You won't have any control over what those external scripts do. Short of not including them, about the only thing you can do is defer their loading.
One way to do this is with the defer
attribute.
<script defer src="https://example.com/script.js"></script>
This allows the page to continue to load and execute while the script is loaded and executed later. This method doesn't work with all scripts, but it will work with most. Many of the script tags you include from providers, such as Facebook, will already have alternative code which defers their loading.
See also: https://flaviocopes.com/javascript-async-defer/
answered Nov 22 at 1:54
Brad
113k25224383
113k25224383
Thanks Brad. I've got the scripts deferred already, so that's good. I suppose that's the cost of having the functionality then.
– InsuredApple
Nov 22 at 2:28
@InsuredApple Yes. If you are a big enough fish, you can try to go yell at the people who made the scripts and get them to optimize things. Chances are though, they're already looking at the load and execution times and have optimized them quite a bit. I know for sure that Facebook is always working on optimizing their SDKs, for example.
– Brad
Nov 22 at 2:29
add a comment |
Thanks Brad. I've got the scripts deferred already, so that's good. I suppose that's the cost of having the functionality then.
– InsuredApple
Nov 22 at 2:28
@InsuredApple Yes. If you are a big enough fish, you can try to go yell at the people who made the scripts and get them to optimize things. Chances are though, they're already looking at the load and execution times and have optimized them quite a bit. I know for sure that Facebook is always working on optimizing their SDKs, for example.
– Brad
Nov 22 at 2:29
Thanks Brad. I've got the scripts deferred already, so that's good. I suppose that's the cost of having the functionality then.
– InsuredApple
Nov 22 at 2:28
Thanks Brad. I've got the scripts deferred already, so that's good. I suppose that's the cost of having the functionality then.
– InsuredApple
Nov 22 at 2:28
@InsuredApple Yes. If you are a big enough fish, you can try to go yell at the people who made the scripts and get them to optimize things. Chances are though, they're already looking at the load and execution times and have optimized them quite a bit. I know for sure that Facebook is always working on optimizing their SDKs, for example.
– Brad
Nov 22 at 2:29
@InsuredApple Yes. If you are a big enough fish, you can try to go yell at the people who made the scripts and get them to optimize things. Chances are though, they're already looking at the load and execution times and have optimized them quite a bit. I know for sure that Facebook is always working on optimizing their SDKs, for example.
– Brad
Nov 22 at 2:29
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53422834%2fhow-can-i-reduce-javascript-execution-time-of-external-scripts%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Where are you loading the scripts? if you are loading them in the page header then they are blocking and that's a big problem. If you are loading them in the body there are optimizations that can be made, such as loading them in parallel and pre-fetching. But you are correct that there is no way to make the script do less work. All you can do is optimize when that work is done, or, remove the script and not do the work at all.
– Matthew Herbst
Nov 22 at 1:52
The scripts are loaded "correctly". Now I am just trying to understand if there is anything I can do about the JavaScript execution time, but it doesn't sound like it.
– InsuredApple
Nov 22 at 2:29
I'm not doubting that they are loading correctly. I'm saying that depending on how you load them, you can optimize how long they take to parse and execute. Parsing of the scripts is a big part of that score and can cause the user lag if it takes too long and isn't handled properly. Again, I would suggest you to please show us how you are loading the scripts, and we might be able to help you greatly reduce how much of a performance impact they have on the page, which is what it sounds like you really care about.
– Matthew Herbst
Nov 22 at 2:31