#put it in the NCC add pictures to the NCC
Explore tagged Tumblr posts
Text
Aussie Drafty culture is: "WHAT THE ACTUAL FUCK IS HAPPENING OH MY GOD, THE CORRUPTION AAAAAAA"
and
"can... can someone PLEASE FIX THE MOTHERFUCKING ONLINE SHIT, WHY IS ALL OF IT GLITCHY! INACCESSIBLE! AND ONLY WORKS ON ONE BROWSER???????"
someone please fucking punch them in the face, it's a dishonour and a disgrace that they allow this level of bugginess.
it's not even easy too lookup and use, it's under like so much stupid bloat text and Is confusing to find like in what world is this even okay.
UGGHGHHGGGGHHGHGH
#-pop#tbh they need to add the Australian standards inside the NCC#why the fuck is it monies#makes no sense is stupid and IT'S THE LITERAL STANDARDS THE ACTUAL FUCK WHY IS IT NOT FREEEEEEEEE#RAHHHHHHHHH#put it in the NCC add pictures to the NCC#I have so much fucking to talk about.#is this even auspol#idk#aussie#australian#someone please punch the Australian government in the face#I am a complainer it's my right I will bitch and moan til I die#I keep running into INACCESSABLE SHIT IN FUCKING GOVERMNET RESOURCES YOU FUCKERS ARE GOING AGAINST THE LAWWWWW#HOW THE HELL IS THIS HAPPENINGGGGGG
1 note
·
View note
Text
How JavaScript impacts page loading speed on mobile
The effect of JavaScript on mobile web performance is twofold.
One, it is the second largest contributor to webpage weight, behind images, thereby increasing download time; and two, once downloaded, the browser then needs to run the script, which can delay the downloading/rendering of other (perhaps more important) assets on the page.
JavaScript (aka scripts or JS) is one of the triumvirate of technologies that make web pages (and web apps) work. The HTML (Hypertext Markup Language) controls the structure and content of the webpage; CSS (Cascade Styling Sheets) controls how the site looks on different devices; and JavaScript makes the page more interactive and dynamic.
Scripts perform numerous functions on webpages such as loading ads, A/B testing, tag management (personalizing the page) or displaying an inline video player.
Over the last five years, the total weight of pages sent to mobile devices has quadrupled to 2.2MB. Size matters because, in general, the more data that is sent over a mobile, or fixed, network the longer a page will take to load. More data, more seconds staring at an empty mobile screen.
This suggests that images – which tend to take up more of the total kilobytes (KB) or megabytes (MB) of each page – are the main culprit. But this is not always the case.
JavaScript could potentially have more of an impact on page performance than images. As Patrick Meenan, founder of the web performance testing site WebPageTest and software engineer at Google, explains:
“Scripts are usually a (bigger) issue because of the time it takes to actually execute the script in addition to the download size, while images really only matter because of the download size. With mobile devices for example, it can take several seconds to run a script even after it has been downloaded.”
It’s not necessarily JavaScript, per se, that is the problem, but how it is implemented: scripts can monopolize browser activity, blocking the download and rendering (displaying) of other content.
“The problems are often compounded where the script is referenced in the page. The content after a ‘blocking’ script (as opposed to an async script) doesn’t exist, as far as the browser is concerned, until after the script has been downloaded and executed. When, as is commonly the case, scripts are put at the beginning of the page this means that the page will be completely blank until the scripts have downloaded and executed.”
We will discuss below the difference between blocking, inline, synchronous (sync), asynchronous (async) and deferred scripts and how to fix JavaScript problems, but first we’ll look at how to spot issues.
Testing for blocking JavaScript
If you have tested your webpages using Google PageSpeed Insights (N.B. you should regularly test your mobile webpages using tools such as WebPageTest and PageSpeed Insights), chances are you have seen the following warning:
! Should Fix:
Eliminate render-blocking JavaScript and CSS in above-the-fold content
Your page has 8 blocking script resources and 7 blocking CSS resources. This causes a delay in rendering your page.
None of the above-the-fold content on your page could be rendered without waiting for the following resources to load. Try to defer or asynchronously load blocking resources, or inline the critical portions of those resources directly in the HTML.
The text and image above is from a Mobile PageSpeed Insights test on BBC.com conducted in February 2017.
Note “above the fold” refers only to the part of the webpage which is visible on a mobile device, without scrolling, Google is not analyzing scripts on the rest of the page.
The BBC is the world’s most popular English language news website, according to Alexa, so to put it in context we should also test the others in the top four. The results suggests two more publishers have similar issues with JavaScript. (The test also highlights CSS issues, but this is not the focus of the article):
BBC.com PageSpeed test (8 blocking scripts; 7 blocking CSS resources)
NYTimes.com PageSpeed test (0 blocking scripts)
ESPN.com PageSpeed test (2 blocking scripts; 3 blocking CSS resources)
CNN.com PageSpeed test (6 blocking scripts; 2 blocking CSS resources)
4x growth in JavaScript use in five years
Over the last five years the amount of JavaScript used on the average mobile page has almost quadrupled from 101KB in February 2012 to 387KB in February 2017. The number of requests (a request is the number of times a browser is required to download an additional piece of content or code) for different JavaScript files has increased from 8 to 21.
This is clearly illustrated in the graph below from HTTP Archive. HTTP Archive tests the top 1 million sites several times every month using data from WebPageTest, and publishes trends and stats that are essential benchmarking for the performance of your site.
For the top 1 million sites monitored by HTTP Archive, JavaScript accounts for 17.4% of page weight. JavaScript also accounts for 21 out of 93 total requests (22.6%).
For some sites, particularly in the news space, JavaScript has a considerably larger share of page weight than the norm.
The image below compares the breakdown by content type for the average site with BBC.com tested by HTTP Archive (15 February 2017):
The first thing to note is how impressively small the BBC page size is: 609KB v 2225KB.
The second thing to note is how small the combined size of the BBC images: 70KB v 1501KB.
The third thing to note is how proportionally large the scripts are: 458KB or 75.2% of total page size.
The fourth thing to note (not shown in the charts below) is that 39 (44.3%) of the BBC’s total 88 requests are scripts.
When you compare the test results of the top four English language news websites, it is remarkable how much smaller the BBC is than its rivals. It is a one-third to a half of the size, with two to three times less JavaScript.
BBC.com tested by HTTP Archive: Scripts 458KB (75.2%) of 609KB of total data; 39 JS requests (44.3%) of 167 88 total requests.
NYTimes.com HTTP Archive test: Scripts 1511KB (51%) of 2953KB of total data; 73 JS requests (43.7%) of 167 total requests. (N.B. NY Times has a dedicated mobile site at mobile.nytimes.com, which is not listed by HTTP Archive, which may deliver different results.)
ESPN.com HTTP Archive test: Scripts 1183KB (65.7%) of 1802KB of total data; 50 JS requests (47.2%) of 106 total requests.
CNN.com HTTP Archive test: Scripts 1484KB (68%) of 2182KB of total data; 67 JS requests (31.9%) of 210 total requests.
What is the effect on mobile page speed?
So does it follow that the slim-line BBC site would load much faster than all its rivals?
Err, no. On 15 February 2017, HTTP Archive recorded the following load times:
BBC.com: 18.3 seconds
NYTimes.com: 27.4 seconds
ESPN.com: 8.8 seconds
CNN.com: 31.5 seconds
So, the BBC is faster loading on a mobile device than CNN and the New York Times, but considerably slower than the (larger) ESPN.
This is what the two sites look like on a mobile device. (The filmstrip is one of WebPageTest’s most visually compelling features, easily understood by any non-techie). Each frame represents 1 second. When the HTTP Archive test took place, for 9 seconds BBC.com mobile visitors saw nothing, while for 4 seconds ESPN visitors saw nothing.
There could be many reasons why one website might be faster than another, such as server response times, use of content delivery networks (CDN), the impact of ad networks, inclusion of third-party data (common on news sites), or the time and place of the test (in this case California, USA).
However, all other things being equal, it is possible that JavaScript could be a contributing factor. (Apologies for the hedging of bets). As noted above, BBC.com did receive more warnings for blocking scripts above the fold than the other news sites.
Reducing reliance on JavaScript
JavaScript is often used to perform tasks that cannot (easily) be done with HTML or CSS. As the W3C gradually add these features to the HTML or CSS standards and they are implemented by browsers, the JavaScript patch is no longer needed, as HTML/CSS is likely to be more efficient. A good example of this is responsive images.
Alex Painter, Web Performance Consultant at NCC Group:
“As a rule, it’s worth sticking to the principle of progressive enhancement – delivering a site that works without JavaScript and using scripts only for those extra features that can’t be done any other way.
“Using JavaScript to render content can be expensive – it takes time to load and execute. So, for example, if you can use HTML and CSS to achieve the same result, that’s generally going to be faster.
“When it comes to responsive images, for example, you can use media queries in CSS and picture/srcset in the HTML to deliver the right image for the viewport without having rely on JavaScript.”
Choose asynchronous and deferred JavaScript over blocking and inline scripts
There are a number of ways that JavaScript can be implemented on a webpage, including:
Blocking scripts are synchronous which means they have to be dealt with immediately and ahead of anything else. By default, all JavaScript is parser blocking. As the browser does not know what the script will do to the page, as soon as it meets a request (in the HTML file) to download a JavaScript file, it stops building the webpage, and does not continue until the file is downloaded and executed.
Inline scripts also stop the page build, but as they are included in the HTML, they do not need to be individually downloaded. However too large or too many inline scripts will bloat and delay the initial download of HTML file.
Asynchronous scripts allows the browser to continue parsing (analyzing the code and building the webpage), while the JavaScript file is downloaded. Including the async attribute in the HTML tells the browser that it doesn’t need to put everything on hold.
Deferred JavaScript – tells the browser to leave the execution of the JS file until after it has finished building the webpage, this is signified with the defer attribute.
Are blocking scripts ever justified?
Patrick Meenan:
“If the site functionality relies on the code, then it needs to be run as a blocking script so that it is ready before the page needs it. A very common case for this is tag managers and A/B testing platforms where the code will change the page. In other cases blocking is used when it will be more work to load the functionality asynchronously.”
Reducing size of JavaScript files
How big is too big? How many requests is too many?
This will always be a balancing act.
Patrick Meenan:
“Since the browser will only load six requests at a time for each domain, if you have more than that it needs to request the rest after the first ones have completed, leading to longer times from the request/response delays.
“Larger JavaScript files also take longer to parse and run (1ms for every 1KB of uncompressed JS is a reasonable estimate). All else being equal, if you have the same amount of JS in a lot of files it will take much longer to load than if the same amount of JS was in a single file.”
Google recommends minification of JavaScript files using UglifyJS or Closure Compiler.
For more on how to optimize the speed of your mobile site, check out our previous three-part series:
How to optimize your mobile site speed: Testing for issues
How to reduce the impact of images on your mobile site speed
How to optimize images for mobile: Implementing light, responsive, correctly-formatted images
Andy Favell is Search Engine Watch’s columnist on mobile. He is a London-based freelance mobile/digital consultant, journalist and web editor. Contact him via LinkedIn, or on Twitter at Andy_Favell.
source https://searchenginewatch.com/2017/06/23/how-javascript-impacts-page-loading-speed-on-mobile/ from Rising Phoenix SEO http://risingphoenixseo.blogspot.com/2017/06/how-javascript-impacts-page-loading.html
0 notes
Text
How JavaScript impacts page loading speed on mobile
The effect of JavaScript on mobile web performance is twofold.
One, it is the second largest contributor to webpage weight, behind images, thereby increasing download time; and two, once downloaded, the browser then needs to run the script, which can delay the downloading/rendering of other (perhaps more important) assets on the page.
JavaScript (aka scripts or JS) is one of the triumvirate of technologies that make web pages (and web apps) work. The HTML (Hypertext Markup Language) controls the structure and content of the webpage; CSS (Cascade Styling Sheets) controls how the site looks on different devices; and JavaScript makes the page more interactive and dynamic.
Scripts perform numerous functions on webpages such as loading ads, A/B testing, tag management (personalizing the page) or displaying an inline video player.
Over the last five years, the total weight of pages sent to mobile devices has quadrupled to 2.2MB. Size matters because, in general, the more data that is sent over a mobile, or fixed, network the longer a page will take to load. More data, more seconds staring at an empty mobile screen.
This suggests that images – which tend to take up more of the total kilobytes (KB) or megabytes (MB) of each page – are the main culprit. But this is not always the case.
JavaScript could potentially have more of an impact on page performance than images. As Patrick Meenan, founder of the web performance testing site WebPageTest and software engineer at Google, explains:
“Scripts are usually a (bigger) issue because of the time it takes to actually execute the script in addition to the download size, while images really only matter because of the download size. With mobile devices for example, it can take several seconds to run a script even after it has been downloaded.”
It’s not necessarily JavaScript, per se, that is the problem, but how it is implemented: scripts can monopolize browser activity, blocking the download and rendering (displaying) of other content.
“The problems are often compounded where the script is referenced in the page. The content after a ‘blocking’ script (as opposed to an async script) doesn’t exist, as far as the browser is concerned, until after the script has been downloaded and executed. When, as is commonly the case, scripts are put at the beginning of the page this means that the page will be completely blank until the scripts have downloaded and executed.”
We will discuss below the difference between blocking, inline, synchronous (sync), asynchronous (async) and deferred scripts and how to fix JavaScript problems, but first we’ll look at how to spot issues.
Testing for blocking JavaScript
If you have tested your webpages using Google PageSpeed Insights (N.B. you should regularly test your mobile webpages using tools such as WebPageTest and PageSpeed Insights), chances are you have seen the following warning:
! Should Fix:
Eliminate render-blocking JavaScript and CSS in above-the-fold content
Your page has 8 blocking script resources and 7 blocking CSS resources. This causes a delay in rendering your page.
None of the above-the-fold content on your page could be rendered without waiting for the following resources to load. Try to defer or asynchronously load blocking resources, or inline the critical portions of those resources directly in the HTML.
The text and image above is from a Mobile PageSpeed Insights test on BBC.com conducted in February 2017.
Note “above the fold” refers only to the part of the webpage which is visible on a mobile device, without scrolling, Google is not analyzing scripts on the rest of the page.
The BBC is the world’s most popular English language news website, according to Alexa, so to put it in context we should also test the others in the top four. The results suggests two more publishers have similar issues with JavaScript. (The test also highlights CSS issues, but this is not the focus of the article):
BBC.com PageSpeed test (8 blocking scripts; 7 blocking CSS resources)
NYTimes.com PageSpeed test (0 blocking scripts)
ESPN.com PageSpeed test (2 blocking scripts; 3 blocking CSS resources)
CNN.com PageSpeed test (6 blocking scripts; 2 blocking CSS resources)
4x growth in JavaScript use in five years
Over the last five years the amount of JavaScript used on the average mobile page has almost quadrupled from 101KB in February 2012 to 387KB in February 2017. The number of requests (a request is the number of times a browser is required to download an additional piece of content or code) for different JavaScript files has increased from 8 to 21.
This is clearly illustrated in the graph below from HTTP Archive. HTTP Archive tests the top 1 million sites several times every month using data from WebPageTest, and publishes trends and stats that are essential benchmarking for the performance of your site.
For the top 1 million sites monitored by HTTP Archive, JavaScript accounts for 17.4% of page weight. JavaScript also accounts for 21 out of 93 total requests (22.6%).
For some sites, particularly in the news space, JavaScript has a considerably larger share of page weight than the norm.
The image below compares the breakdown by content type for the average site with BBC.com tested by HTTP Archive (15 February 2017):
The first thing to note is how impressively small the BBC page size is: 609KB v 2225KB.
The second thing to note is how small the combined size of the BBC images: 70KB v 1501KB.
The third thing to note is how proportionally large the scripts are: 458KB or 75.2% of total page size.
The fourth thing to note (not shown in the charts below) is that 39 (44.3%) of the BBC’s total 88 requests are scripts.
When you compare the test results of the top four English language news websites, it is remarkable how much smaller the BBC is than its rivals. It is a one-third to a half of the size, with two to three times less JavaScript.
BBC.com tested by HTTP Archive: Scripts 458KB (75.2%) of 609KB of total data; 39 JS requests (44.3%) of 167 88 total requests.
NYTimes.com HTTP Archive test: Scripts 1511KB (51%) of 2953KB of total data; 73 JS requests (43.7%) of 167 total requests. (N.B. NY Times has a dedicated mobile site at mobile.nytimes.com, which is not listed by HTTP Archive, which may deliver different results.)
ESPN.com HTTP Archive test: Scripts 1183KB (65.7%) of 1802KB of total data; 50 JS requests (47.2%) of 106 total requests.
CNN.com HTTP Archive test: Scripts 1484KB (68%) of 2182KB of total data; 67 JS requests (31.9%) of 210 total requests.
What is the effect on mobile page speed?
So does it follow that the slim-line BBC site would load much faster than all its rivals?
Err, no. On 15 February 2017, HTTP Archive recorded the following load times:
BBC.com: 18.3 seconds
NYTimes.com: 27.4 seconds
ESPN.com: 8.8 seconds
CNN.com: 31.5 seconds
So, the BBC is faster loading on a mobile device than CNN and the New York Times, but considerably slower than the (larger) ESPN.
This is what the two sites look like on a mobile device. (The filmstrip is one of WebPageTest’s most visually compelling features, easily understood by any non-techie). Each frame represents 1 second. When the HTTP Archive test took place, for 9 seconds BBC.com mobile visitors saw nothing, while for 4 seconds ESPN visitors saw nothing.
There could be many reasons why one website might be faster than another, such as server response times, use of content delivery networks (CDN), the impact of ad networks, inclusion of third-party data (common on news sites), or the time and place of the test (in this case California, USA).
However, all other things being equal, it is possible that JavaScript could be a contributing factor. (Apologies for the hedging of bets). As noted above, BBC.com did receive more warnings for blocking scripts above the fold than the other news sites.
Reducing reliance on JavaScript
JavaScript is often used to perform tasks that cannot (easily) be done with HTML or CSS. As the W3C gradually add these features to the HTML or CSS standards and they are implemented by browsers, the JavaScript patch is no longer needed, as HTML/CSS is likely to be more efficient. A good example of this is responsive images.
Alex Painter, Web Performance Consultant at NCC Group:
“As a rule, it’s worth sticking to the principle of progressive enhancement – delivering a site that works without JavaScript and using scripts only for those extra features that can’t be done any other way.
“Using JavaScript to render content can be expensive – it takes time to load and execute. So, for example, if you can use HTML and CSS to achieve the same result, that’s generally going to be faster.
“When it comes to responsive images, for example, you can use media queries in CSS and picture/srcset in the HTML to deliver the right image for the viewport without having rely on JavaScript.”
Choose asynchronous and deferred JavaScript over blocking and inline scripts
There are a number of ways that JavaScript can be implemented on a webpage, including:
Blocking scripts are synchronous which means they have to be dealt with immediately and ahead of anything else. By default, all JavaScript is parser blocking. As the browser does not know what the script will do to the page, as soon as it meets a request (in the HTML file) to download a JavaScript file, it stops building the webpage, and does not continue until the file is downloaded and executed.
Inline scripts also stop the page build, but as they are included in the HTML, they do not need to be individually downloaded. However too large or too many inline scripts will bloat and delay the initial download of HTML file.
Asynchronous scripts allows the browser to continue parsing (analyzing the code and building the webpage), while the JavaScript file is downloaded. Including the async attribute in the HTML tells the browser that it doesn’t need to put everything on hold.
Deferred JavaScript – tells the browser to leave the execution of the JS file until after it has finished building the webpage, this is signified with the defer attribute.
Are blocking scripts ever justified?
Patrick Meenan:
“If the site functionality relies on the code, then it needs to be run as a blocking script so that it is ready before the page needs it. A very common case for this is tag managers and A/B testing platforms where the code will change the page. In other cases blocking is used when it will be more work to load the functionality asynchronously.”
Reducing size of JavaScript files
How big is too big? How many requests is too many?
This will always be a balancing act.
Patrick Meenan:
“Since the browser will only load six requests at a time for each domain, if you have more than that it needs to request the rest after the first ones have completed, leading to longer times from the request/response delays.
“Larger JavaScript files also take longer to parse and run (1ms for every 1KB of uncompressed JS is a reasonable estimate). All else being equal, if you have the same amount of JS in a lot of files it will take much longer to load than if the same amount of JS was in a single file.”
Google recommends minification of JavaScript files using UglifyJS or Closure Compiler.
For more on how to optimize the speed of your mobile site, check out our previous three-part series:
How to optimize your mobile site speed: Testing for issues
How to reduce the impact of images on your mobile site speed
How to optimize images for mobile: Implementing light, responsive, correctly-formatted images
Andy Favell is Search Engine Watch’s columnist on mobile. He is a London-based freelance mobile/digital consultant, journalist and web editor. Contact him via LinkedIn, or on Twitter at Andy_Favell.
from IM Tips And Tricks https://searchenginewatch.com/2017/06/23/how-javascript-impacts-page-loading-speed-on-mobile/ from Rising Phoenix SEO https://risingphxseo.tumblr.com/post/162161370350
0 notes
Text
How JavaScript impacts page loading speed on mobile
The effect of JavaScript on mobile web performance is twofold.
One, it is the second largest contributor to webpage weight, behind images, thereby increasing download time; and two, once downloaded, the browser then needs to run the script, which can delay the downloading/rendering of other (perhaps more important) assets on the page.
JavaScript (aka scripts or JS) is one of the triumvirate of technologies that make web pages (and web apps) work. The HTML (Hypertext Markup Language) controls the structure and content of the webpage; CSS (Cascade Styling Sheets) controls how the site looks on different devices; and JavaScript makes the page more interactive and dynamic.
Scripts perform numerous functions on webpages such as loading ads, A/B testing, tag management (personalizing the page) or displaying an inline video player.
Over the last five years, the total weight of pages sent to mobile devices has quadrupled to 2.2MB. Size matters because, in general, the more data that is sent over a mobile, or fixed, network the longer a page will take to load. More data, more seconds staring at an empty mobile screen.
This suggests that images – which tend to take up more of the total kilobytes (KB) or megabytes (MB) of each page – are the main culprit. But this is not always the case.
JavaScript could potentially have more of an impact on page performance than images. As Patrick Meenan, founder of the web performance testing site WebPageTest and software engineer at Google, explains:
“Scripts are usually a (bigger) issue because of the time it takes to actually execute the script in addition to the download size, while images really only matter because of the download size. With mobile devices for example, it can take several seconds to run a script even after it has been downloaded.”
It’s not necessarily JavaScript, per se, that is the problem, but how it is implemented: scripts can monopolize browser activity, blocking the download and rendering (displaying) of other content.
“The problems are often compounded where the script is referenced in the page. The content after a ‘blocking’ script (as opposed to an async script) doesn’t exist, as far as the browser is concerned, until after the script has been downloaded and executed. When, as is commonly the case, scripts are put at the beginning of the page this means that the page will be completely blank until the scripts have downloaded and executed.”
We will discuss below the difference between blocking, inline, synchronous (sync), asynchronous (async) and deferred scripts and how to fix JavaScript problems, but first we’ll look at how to spot issues.
Testing for blocking JavaScript
If you have tested your webpages using Google PageSpeed Insights (N.B. you should regularly test your mobile webpages using tools such as WebPageTest and PageSpeed Insights), chances are you have seen the following warning:
! Should Fix:
Eliminate render-blocking JavaScript and CSS in above-the-fold content
Your page has 8 blocking script resources and 7 blocking CSS resources. This causes a delay in rendering your page.
None of the above-the-fold content on your page could be rendered without waiting for the following resources to load. Try to defer or asynchronously load blocking resources, or inline the critical portions of those resources directly in the HTML.
The text and image above is from a Mobile PageSpeed Insights test on BBC.com conducted in February 2017.
Note “above the fold” refers only to the part of the webpage which is visible on a mobile device, without scrolling, Google is not analyzing scripts on the rest of the page.
The BBC is the world’s most popular English language news website, according to Alexa, so to put it in context we should also test the others in the top four. The results suggests two more publishers have similar issues with JavaScript. (The test also highlights CSS issues, but this is not the focus of the article):
BBC.com PageSpeed test (8 blocking scripts; 7 blocking CSS resources)
NYTimes.com PageSpeed test (0 blocking scripts)
ESPN.com PageSpeed test (2 blocking scripts; 3 blocking CSS resources)
CNN.com PageSpeed test (6 blocking scripts; 2 blocking CSS resources)
4x growth in JavaScript use in five years
Over the last five years the amount of JavaScript used on the average mobile page has almost quadrupled from 101KB in February 2012 to 387KB in February 2017. The number of requests (a request is the number of times a browser is required to download an additional piece of content or code) for different JavaScript files has increased from 8 to 21.
This is clearly illustrated in the graph below from HTTP Archive. HTTP Archive tests the top 1 million sites several times every month using data from WebPageTest, and publishes trends and stats that are essential benchmarking for the performance of your site.
For the top 1 million sites monitored by HTTP Archive, JavaScript accounts for 17.4% of page weight. JavaScript also accounts for 21 out of 93 total requests (22.6%).
For some sites, particularly in the news space, JavaScript has a considerably larger share of page weight than the norm.
The image below compares the breakdown by content type for the average site with BBC.com tested by HTTP Archive (15 February 2017):
The first thing to note is how impressively small the BBC page size is: 609KB v 2225KB.
The second thing to note is how small the combined size of the BBC images: 70KB v 1501KB.
The third thing to note is how proportionally large the scripts are: 458KB or 75.2% of total page size.
The fourth thing to note (not shown in the charts below) is that 39 (44.3%) of the BBC’s total 88 requests are scripts.
When you compare the test results of the top four English language news websites, it is remarkable how much smaller the BBC is than its rivals. It is a one-third to a half of the size, with two to three times less JavaScript.
BBC.com tested by HTTP Archive: Scripts 458KB (75.2%) of 609KB of total data; 39 JS requests (44.3%) of 167 88 total requests.
NYTimes.com HTTP Archive test: Scripts 1511KB (51%) of 2953KB of total data; 73 JS requests (43.7%) of 167 total requests. (N.B. NY Times has a dedicated mobile site at mobile.nytimes.com, which is not listed by HTTP Archive, which may deliver different results.)
ESPN.com HTTP Archive test: Scripts 1183KB (65.7%) of 1802KB of total data; 50 JS requests (47.2%) of 106 total requests.
CNN.com HTTP Archive test: Scripts 1484KB (68%) of 2182KB of total data; 67 JS requests (31.9%) of 210 total requests.
What is the effect on mobile page speed?
So does it follow that the slim-line BBC site would load much faster than all its rivals?
Err, no. On 15 February 2017, HTTP Archive recorded the following load times:
BBC.com: 18.3 seconds
NYTimes.com: 27.4 seconds
ESPN.com: 8.8 seconds
CNN.com: 31.5 seconds
So, the BBC is faster loading on a mobile device than CNN and the New York Times, but considerably slower than the (larger) ESPN.
This is what the two sites look like on a mobile device. (The filmstrip is one of WebPageTest’s most visually compelling features, easily understood by any non-techie). Each frame represents 1 second. When the HTTP Archive test took place, for 9 seconds BBC.com mobile visitors saw nothing, while for 4 seconds ESPN visitors saw nothing.
There could be many reasons why one website might be faster than another, such as server response times, use of content delivery networks (CDN), the impact of ad networks, inclusion of third-party data (common on news sites), or the time and place of the test (in this case California, USA).
However, all other things being equal, it is possible that JavaScript could be a contributing factor. (Apologies for the hedging of bets). As noted above, BBC.com did receive more warnings for blocking scripts above the fold than the other news sites.
Reducing reliance on JavaScript
JavaScript is often used to perform tasks that cannot (easily) be done with HTML or CSS. As the W3C gradually add these features to the HTML or CSS standards and they are implemented by browsers, the JavaScript patch is no longer needed, as HTML/CSS is likely to be more efficient. A good example of this is responsive images.
Alex Painter, Web Performance Consultant at NCC Group:
“As a rule, it’s worth sticking to the principle of progressive enhancement – delivering a site that works without JavaScript and using scripts only for those extra features that can’t be done any other way.
“Using JavaScript to render content can be expensive – it takes time to load and execute. So, for example, if you can use HTML and CSS to achieve the same result, that’s generally going to be faster.
“When it comes to responsive images, for example, you can use media queries in CSS and picture/srcset in the HTML to deliver the right image for the viewport without having rely on JavaScript.”
Choose asynchronous and deferred JavaScript over blocking and inline scripts
There are a number of ways that JavaScript can be implemented on a webpage, including:
Blocking scripts are synchronous which means they have to be dealt with immediately and ahead of anything else. By default, all JavaScript is parser blocking. As the browser does not know what the script will do to the page, as soon as it meets a request (in the HTML file) to download a JavaScript file, it stops building the webpage, and does not continue until the file is downloaded and executed.
Inline scripts also stop the page build, but as they are included in the HTML, they do not need to be individually downloaded. However too large or too many inline scripts will bloat and delay the initial download of HTML file.
Asynchronous scripts allows the browser to continue parsing (analyzing the code and building the webpage), while the JavaScript file is downloaded. Including the async attribute in the HTML tells the browser that it doesn’t need to put everything on hold.
Deferred JavaScript – tells the browser to leave the execution of the JS file until after it has finished building the webpage, this is signified with the defer attribute.
Are blocking scripts ever justified?
Patrick Meenan:
“If the site functionality relies on the code, then it needs to be run as a blocking script so that it is ready before the page needs it. A very common case for this is tag managers and A/B testing platforms where the code will change the page. In other cases blocking is used when it will be more work to load the functionality asynchronously.”
Reducing size of JavaScript files
How big is too big? How many requests is too many?
This will always be a balancing act.
Patrick Meenan:
“Since the browser will only load six requests at a time for each domain, if you have more than that it needs to request the rest after the first ones have completed, leading to longer times from the request/response delays.
“Larger JavaScript files also take longer to parse and run (1ms for every 1KB of uncompressed JS is a reasonable estimate). All else being equal, if you have the same amount of JS in a lot of files it will take much longer to load than if the same amount of JS was in a single file.”
Google recommends minification of JavaScript files using UglifyJS or Closure Compiler.
For more on how to optimize the speed of your mobile site, check out our previous three-part series:
How to optimize your mobile site speed: Testing for issues
How to reduce the impact of images on your mobile site speed
How to optimize images for mobile: Implementing light, responsive, correctly-formatted images
Andy Favell is Search Engine Watch’s columnist on mobile. He is a London-based freelance mobile/digital consultant, journalist and web editor. Contact him via LinkedIn, or on Twitter at Andy_Favell.
from Search Engine Watch https://searchenginewatch.com/2017/06/23/how-javascript-impacts-page-loading-speed-on-mobile/
0 notes
Text
How a Pet Hospice Vet Can Help Your Senior Dog
Pet hospice. When I ask others what they know about this veterinary specialty, the most common response is, “Oh, those are vets who will put your dying dog to sleep in your own home, right?” Yes, in-home euthanasia is a pet hospice service, one that allows your dog to pass in a more peaceful way.
What most people don’t know is that a pet doesn’t have to be in crisis or have only months or weeks to live for veterinary hospice to benefit them. If you have a senior dog with a chronic condition, this specialty can help make their care more manageable and their life more comfortable.
After considering my own pet hospice experiences, and speaking with Dr. Dawnetta Woodruff with Lap of Love Veterinary Hospice and Dr. Christie Cornelius with Last Wishes In-Home Pet Hospice and Euthanasia, I’m eager to share these five reasons to include hospice as part of your older dog’s health plan, even if they have many years left to live.
Senior dog by Shutterstock.
1. Pet hospice veterinarians are experts in senior (advanced age) and geriatric (fragile health) care
Mobility problems, cognitive changes, neurological disorders, liver and kidney dysfunction, neoplasia, impaired vision and so many other ailments can affect your senior dog, and hospice vets have experience with them all. Dr. Woodruff stated, “I would estimate that 90 to 95 percent of our patients are senior pets, and nearly all are considered geriatric.” With this focused caseload, hospice professionals have keen insight into how to create a comprehensive treatment plan, one that may combine pharmaceuticals, standard plus alternative pain and mobility management, nutrition recommendations and environmental change tools.
For example, Dr. Cornelius told me about a 12-year-old Labrador patient suffering from serious mobility issues and related pain, cognitive changes and sleeping problems. When she was consulted, the doctor knew the dog’s prior treatment (joint supplement tablets and an NSAID, the latter of which was upsetting the dog’s stomach) was not a complete solution.
After thoroughly examining the dog and talking with the pet parents, she presented a recommendation that included the following: continuing the joint supplement tablets, introducing weekly joint function injections, changing to a “more gentle to the GI tract” NSAID, and adding specific night and morning pain prescriptions, massage, acupuncture, laser therapy, range-of-motion exercises and nutritional supplements.
After one week, the patient showed improved mobility, less pain, no GI upset and better sleep. After two weeks, improvement continued, with the dog able to enjoy moderate walks and family playtime! And after four weeks, the Lab’s quality of life was so enhanced that “A Different Dog!” was the family’s description of their pet.
2. Veterinary hospice provides focused care in your home
This means more than just increased convenience and decreased stress. Having a pet hospice provider come into your space allows them to get a more detailed picture of your dog’s life, which results in better understanding and treatment. Your pet’s environment (living space, typical pathways, bed setups), daily activities, meals, walking “gear” and home behaviors can be evaluated. This allows the hospice vet to know what is working well for the pet’s medical conditions and what could be altered.
When Dr. Woodruff entered the life of one 11-year-old canine patient named Chuck, he was restless and having trouble getting up and remaining stable while walking, and also clinging to his family (likely due to pain and anxiety). The doctor was able to not only modify his current NSAID dosing for pain and add two additional pain medications, but also recommend floor mats on his most-traveled pathways and the use of slings and harness supports specific to his mobility needs. Fourteen months after his initial visit, this dog is still doing well.
Dr. Dawnetta Woodruff recommended rugs to help keep Chuck on his feet. (Photo courtesy Lap of Love Veterinary Hospice)
3. Hospice care teaches you how to be proactive and in tune with your dog’s condition
Education of pet parents is a veterinary hospice priority. They may provide you with questionnaires, so you have a written baseline of your dog’s current conditions, and also give you monitoring instructions and logging tools. With pet hospice guidance, you can learn what to look for and what deserves serious concern and action — helping you to stay ahead of a “health crisis.”
4. Their help may be more accessible
Veterinary hospice providers may be more available than regular clinics, some offering extended hours and delivering prompt responses to concerned pet parent messages. In my experience, email answers, prescription changes and phone discussions happened quickly, and often outside the usual business hours for veterinary offices. With pet hospice, I believed a partner was there, ready to help me help my best friend!
5. Pet hospice support goes beyond doctor and dog
Understanding your strong emotions about your senior buddy, and also the difficulties you may be experiencing in providing care, vet hospice providers work to make it easier for you. They can connect you with published resources, and as Dr. Cornelius noted, “With a network of people who can help.”
These may include hospice provider support centers, articles, videos, and counselors and support groups to assist you with your current frustrations and worries, anticipatory grief and eventual bereavement. And Dr. Cornelius shared an exciting future pet hospice possibility: the development of a network of trusted sitters for hospice pets, so parents can confidently enjoy a few hours away from home.
So, if you have a senior pooch who is starting to battle some “old age” illness enemies, I recommend giving a veterinary hospice provider in your area a call. For even if the rainbow bridge seems far away, this caring service can help enhance your buddy’s life and make your remaining time together the best it can be.
About the author: Chris Corrigan Mendez, M.Ed., LPC, NCC is a licensed professional counselor in private practice and the proud guardian of two rescue pooches. Chris leads a monthly pet illness and loss support group and provides individual counseling to pet guardians. Follow her at www.ccmcounseling.vpweb.com and www.facebook.com/ccmcounselingstl.
The post How a Pet Hospice Vet Can Help Your Senior Dog appeared first on Dogster.
0 notes
Text
How a Pet Hospice Vet Can Help Your Senior Dog
Pet hospice. When I ask others what they know about this veterinary specialty, the most common response is, “Oh, those are vets who will put your dying dog to sleep in your own home, right?” Yes, in-home euthanasia is a pet hospice service, one that allows your dog to pass in a more peaceful way.
What most people don’t know is that a pet doesn’t have to be in crisis or have only months or weeks to live for veterinary hospice to benefit them. If you have a senior dog with a chronic condition, this specialty can help make their care more manageable and their life more comfortable.
After considering my own pet hospice experiences, and speaking with Dr. Dawnetta Woodruff with Lap of Love Veterinary Hospice and Dr. Christie Cornelius with Last Wishes In-Home Pet Hospice and Euthanasia, I’m eager to share these five reasons to include hospice as part of your older dog’s health plan, even if they have many years left to live.
Senior dog by Shutterstock.
1. Pet hospice veterinarians are experts in senior (advanced age) and geriatric (fragile health) care
Mobility problems, cognitive changes, neurological disorders, liver and kidney dysfunction, neoplasia, impaired vision and so many other ailments can affect your senior dog, and hospice vets have experience with them all. Dr. Woodruff stated, “I would estimate that 90 to 95 percent of our patients are senior pets, and nearly all are considered geriatric.” With this focused caseload, hospice professionals have keen insight into how to create a comprehensive treatment plan, one that may combine pharmaceuticals, standard plus alternative pain and mobility management, nutrition recommendations and environmental change tools.
For example, Dr. Cornelius told me about a 12-year-old Labrador patient suffering from serious mobility issues and related pain, cognitive changes and sleeping problems. When she was consulted, the doctor knew the dog’s prior treatment (joint supplement tablets and an NSAID, the latter of which was upsetting the dog’s stomach) was not a complete solution.
After thoroughly examining the dog and talking with the pet parents, she presented a recommendation that included the following: continuing the joint supplement tablets, introducing weekly joint function injections, changing to a “more gentle to the GI tract” NSAID, and adding specific night and morning pain prescriptions, massage, acupuncture, laser therapy, range-of-motion exercises and nutritional supplements.
After one week, the patient showed improved mobility, less pain, no GI upset and better sleep. After two weeks, improvement continued, with the dog able to enjoy moderate walks and family playtime! And after four weeks, the Lab’s quality of life was so enhanced that “A Different Dog!” was the family’s description of their pet.
2. Veterinary hospice provides focused care in your home
This means more than just increased convenience and decreased stress. Having a pet hospice provider come into your space allows them to get a more detailed picture of your dog’s life, which results in better understanding and treatment. Your pet’s environment (living space, typical pathways, bed setups), daily activities, meals, walking “gear” and home behaviors can be evaluated. This allows the hospice vet to know what is working well for the pet’s medical conditions and what could be altered.
When Dr. Woodruff entered the life of one 11-year-old canine patient named Chuck, he was restless and having trouble getting up and remaining stable while walking, and also clinging to his family (likely due to pain and anxiety). The doctor was able to not only modify his current NSAID dosing for pain and add two additional pain medications, but also recommend floor mats on his most-traveled pathways and the use of slings and harness supports specific to his mobility needs. Fourteen months after his initial visit, this dog is still doing well.
Dr. Dawnetta Woodruff recommended rugs to help keep Chuck on his feet. (Photo courtesy Lap of Love Veterinary Hospice)
3. Hospice care teaches you how to be proactive and in tune with your dog’s condition
Education of pet parents is a veterinary hospice priority. They may provide you with questionnaires, so you have a written baseline of your dog’s current conditions, and also give you monitoring instructions and logging tools. With pet hospice guidance, you can learn what to look for and what deserves serious concern and action — helping you to stay ahead of a “health crisis.”
4. Their help may be more accessible
Veterinary hospice providers may be more available than regular clinics, some offering extended hours and delivering prompt responses to concerned pet parent messages. In my experience, email answers, prescription changes and phone discussions happened quickly, and often outside the usual business hours for veterinary offices. With pet hospice, I believed a partner was there, ready to help me help my best friend!
5. Pet hospice support goes beyond doctor and dog
Understanding your strong emotions about your senior buddy, and also the difficulties you may be experiencing in providing care, vet hospice providers work to make it easier for you. They can connect you with published resources, and as Dr. Cornelius noted, “With a network of people who can help.”
These may include hospice provider support centers, articles, videos, and counselors and support groups to assist you with your current frustrations and worries, anticipatory grief and eventual bereavement. And Dr. Cornelius shared an exciting future pet hospice possibility: the development of a network of trusted sitters for hospice pets, so parents can confidently enjoy a few hours away from home.
So, if you have a senior pooch who is starting to battle some “old age” illness enemies, I recommend giving a veterinary hospice provider in your area a call. For even if the rainbow bridge seems far away, this caring service can help enhance your buddy’s life and make your remaining time together the best it can be.
About the author: Chris Corrigan Mendez, M.Ed., LPC, NCC is a licensed professional counselor in private practice and the proud guardian of two rescue pooches. Chris leads a monthly pet illness and loss support group and provides individual counseling to pet guardians. Follow her at http://ift.tt/1PnpfYM and http://ift.tt/1NidZq6.
The post How a Pet Hospice Vet Can Help Your Senior Dog appeared first on Dogster.
0 notes
Text
How a Pet Hospice Vet Can Help Your Senior Dog
Pet hospice. When I ask others what they know about this veterinary specialty, the most common response is, “Oh, those are vets who will put your dying dog to sleep in your own home, right?” Yes, in-home euthanasia is a pet hospice service, one that allows your dog to pass in a more peaceful way.
What most people don’t know is that a pet doesn’t have to be in crisis or have only months or weeks to live for veterinary hospice to benefit them. If you have a senior dog with a chronic condition, this specialty can help make their care more manageable and their life more comfortable.
After considering my own pet hospice experiences, and speaking with Dr. Dawnetta Woodruff with Lap of Love Veterinary Hospice and Dr. Christie Cornelius with Last Wishes In-Home Pet Hospice and Euthanasia, I’m eager to share these five reasons to include hospice as part of your older dog’s health plan, even if they have many years left to live.
Senior dog by Shutterstock.
1. Pet hospice veterinarians are experts in senior (advanced age) and geriatric (fragile health) care
Mobility problems, cognitive changes, neurological disorders, liver and kidney dysfunction, neoplasia, impaired vision and so many other ailments can affect your senior dog, and hospice vets have experience with them all. Dr. Woodruff stated, “I would estimate that 90 to 95 percent of our patients are senior pets, and nearly all are considered geriatric.” With this focused caseload, hospice professionals have keen insight into how to create a comprehensive treatment plan, one that may combine pharmaceuticals, standard plus alternative pain and mobility management, nutrition recommendations and environmental change tools.
For example, Dr. Cornelius told me about a 12-year-old Labrador patient suffering from serious mobility issues and related pain, cognitive changes and sleeping problems. When she was consulted, the doctor knew the dog’s prior treatment (joint supplement tablets and an NSAID, the latter of which was upsetting the dog’s stomach) was not a complete solution.
After thoroughly examining the dog and talking with the pet parents, she presented a recommendation that included the following: continuing the joint supplement tablets, introducing weekly joint function injections, changing to a “more gentle to the GI tract” NSAID, and adding specific night and morning pain prescriptions, massage, acupuncture, laser therapy, range-of-motion exercises and nutritional supplements.
After one week, the patient showed improved mobility, less pain, no GI upset and better sleep. After two weeks, improvement continued, with the dog able to enjoy moderate walks and family playtime! And after four weeks, the Lab’s quality of life was so enhanced that “A Different Dog!” was the family’s description of their pet.
2. Veterinary hospice provides focused care in your home
This means more than just increased convenience and decreased stress. Having a pet hospice provider come into your space allows them to get a more detailed picture of your dog’s life, which results in better understanding and treatment. Your pet’s environment (living space, typical pathways, bed setups), daily activities, meals, walking “gear” and home behaviors can be evaluated. This allows the hospice vet to know what is working well for the pet’s medical conditions and what could be altered.
When Dr. Woodruff entered the life of one 11-year-old canine patient named Chuck, he was restless and having trouble getting up and remaining stable while walking, and also clinging to his family (likely due to pain and anxiety). The doctor was able to not only modify his current NSAID dosing for pain and add two additional pain medications, but also recommend floor mats on his most-traveled pathways and the use of slings and harness supports specific to his mobility needs. Fourteen months after his initial visit, this dog is still doing well.
Dr. Dawnetta Woodruff recommended rugs to help keep Chuck on his feet. (Photo courtesy Lap of Love Veterinary Hospice)
3. Hospice care teaches you how to be proactive and in tune with your dog’s condition
Education of pet parents is a veterinary hospice priority. They may provide you with questionnaires, so you have a written baseline of your dog’s current conditions, and also give you monitoring instructions and logging tools. With pet hospice guidance, you can learn what to look for and what deserves serious concern and action — helping you to stay ahead of a “health crisis.”
4. Their help may be more accessible
Veterinary hospice providers may be more available than regular clinics, some offering extended hours and delivering prompt responses to concerned pet parent messages. In my experience, email answers, prescription changes and phone discussions happened quickly, and often outside the usual business hours for veterinary offices. With pet hospice, I believed a partner was there, ready to help me help my best friend!
5. Pet hospice support goes beyond doctor and dog
Understanding your strong emotions about your senior buddy, and also the difficulties you may be experiencing in providing care, vet hospice providers work to make it easier for you. They can connect you with published resources, and as Dr. Cornelius noted, “With a network of people who can help.”
These may include hospice provider support centers, articles, videos, and counselors and support groups to assist you with your current frustrations and worries, anticipatory grief and eventual bereavement. And Dr. Cornelius shared an exciting future pet hospice possibility: the development of a network of trusted sitters for hospice pets, so parents can confidently enjoy a few hours away from home.
So, if you have a senior pooch who is starting to battle some “old age” illness enemies, I recommend giving a veterinary hospice provider in your area a call. For even if the rainbow bridge seems far away, this caring service can help enhance your buddy’s life and make your remaining time together the best it can be.
About the author: Chris Corrigan Mendez, M.Ed., LPC, NCC is a licensed professional counselor in private practice and the proud guardian of two rescue pooches. Chris leads a monthly pet illness and loss support group and provides individual counseling to pet guardians. Follow her at http://ift.tt/1PnpfYM and http://ift.tt/1NidZq6.
The post How a Pet Hospice Vet Can Help Your Senior Dog appeared first on Dogster.
0 notes
Text
How a Pet Hospice Vet Can Help Your Senior Dog
Pet hospice. When I ask others what they know about this veterinary specialty, the most common response is, “Oh, those are vets who will put your dying dog to sleep in your own home, right?” Yes, in-home euthanasia is a pet hospice service, one that allows your dog to pass in a more peaceful way.
What most people don’t know is that a pet doesn’t have to be in crisis or have only months or weeks to live for veterinary hospice to benefit them. If you have a senior dog with a chronic condition, this specialty can help make their care more manageable and their life more comfortable.
After considering my own pet hospice experiences, and speaking with Dr. Dawnetta Woodruff with Lap of Love Veterinary Hospice and Dr. Christie Cornelius with Last Wishes In-Home Pet Hospice and Euthanasia, I’m eager to share these five reasons to include hospice as part of your older dog’s health plan, even if they have many years left to live.
Senior dog by Shutterstock.
1. Pet hospice veterinarians are experts in senior (advanced age) and geriatric (fragile health) care
Mobility problems, cognitive changes, neurological disorders, liver and kidney dysfunction, neoplasia, impaired vision and so many other ailments can affect your senior dog, and hospice vets have experience with them all. Dr. Woodruff stated, “I would estimate that 90 to 95 percent of our patients are senior pets, and nearly all are considered geriatric.” With this focused caseload, hospice professionals have keen insight into how to create a comprehensive treatment plan, one that may combine pharmaceuticals, standard plus alternative pain and mobility management, nutrition recommendations and environmental change tools.
For example, Dr. Cornelius told me about a 12-year-old Labrador patient suffering from serious mobility issues and related pain, cognitive changes and sleeping problems. When she was consulted, the doctor knew the dog’s prior treatment (joint supplement tablets and an NSAID, the latter of which was upsetting the dog’s stomach) was not a complete solution.
After thoroughly examining the dog and talking with the pet parents, she presented a recommendation that included the following: continuing the joint supplement tablets, introducing weekly joint function injections, changing to a “more gentle to the GI tract” NSAID, and adding specific night and morning pain prescriptions, massage, acupuncture, laser therapy, range-of-motion exercises and nutritional supplements.
After one week, the patient showed improved mobility, less pain, no GI upset and better sleep. After two weeks, improvement continued, with the dog able to enjoy moderate walks and family playtime! And after four weeks, the Lab’s quality of life was so enhanced that “A Different Dog!” was the family’s description of their pet.
2. Veterinary hospice provides focused care in your home
This means more than just increased convenience and decreased stress. Having a pet hospice provider come into your space allows them to get a more detailed picture of your dog’s life, which results in better understanding and treatment. Your pet’s environment (living space, typical pathways, bed setups), daily activities, meals, walking “gear” and home behaviors can be evaluated. This allows the hospice vet to know what is working well for the pet’s medical conditions and what could be altered.
When Dr. Woodruff entered the life of one 11-year-old canine patient named Chuck, he was restless and having trouble getting up and remaining stable while walking, and also clinging to his family (likely due to pain and anxiety). The doctor was able to not only modify his current NSAID dosing for pain and add two additional pain medications, but also recommend floor mats on his most-traveled pathways and the use of slings and harness supports specific to his mobility needs. Fourteen months after his initial visit, this dog is still doing well.
Dr. Dawnetta Woodruff recommended rugs to help keep Chuck on his feet. (Photo courtesy Lap of Love Veterinary Hospice)
3. Hospice care teaches you how to be proactive and in tune with your dog’s condition
Education of pet parents is a veterinary hospice priority. They may provide you with questionnaires, so you have a written baseline of your dog’s current conditions, and also give you monitoring instructions and logging tools. With pet hospice guidance, you can learn what to look for and what deserves serious concern and action — helping you to stay ahead of a “health crisis.”
4. Their help may be more accessible
Veterinary hospice providers may be more available than regular clinics, some offering extended hours and delivering prompt responses to concerned pet parent messages. In my experience, email answers, prescription changes and phone discussions happened quickly, and often outside the usual business hours for veterinary offices. With pet hospice, I believed a partner was there, ready to help me help my best friend!
5. Pet hospice support goes beyond doctor and dog
Understanding your strong emotions about your senior buddy, and also the difficulties you may be experiencing in providing care, vet hospice providers work to make it easier for you. They can connect you with published resources, and as Dr. Cornelius noted, “With a network of people who can help.”
These may include hospice provider support centers, articles, videos, and counselors and support groups to assist you with your current frustrations and worries, anticipatory grief and eventual bereavement. And Dr. Cornelius shared an exciting future pet hospice possibility: the development of a network of trusted sitters for hospice pets, so parents can confidently enjoy a few hours away from home.
So, if you have a senior pooch who is starting to battle some “old age” illness enemies, I recommend giving a veterinary hospice provider in your area a call. For even if the rainbow bridge seems far away, this caring service can help enhance your buddy’s life and make your remaining time together the best it can be.
About the author: Chris Corrigan Mendez, M.Ed., LPC, NCC is a licensed professional counselor in private practice and the proud guardian of two rescue pooches. Chris leads a monthly pet illness and loss support group and provides individual counseling to pet guardians. Follow her at http://ift.tt/1PnpfYM and http://ift.tt/1NidZq6.
The post How a Pet Hospice Vet Can Help Your Senior Dog appeared first on Dogster.
0 notes
Text
How a Pet Hospice Vet Can Help Your Senior Dog
Pet hospice. When I ask others what they know about this veterinary specialty, the most common response is, “Oh, those are vets who will put your dying dog to sleep in your own home, right?” Yes, in-home euthanasia is a pet hospice service, one that allows your dog to pass in a more peaceful way.
What most people don’t know is that a pet doesn’t have to be in crisis or have only months or weeks to live for veterinary hospice to benefit them. If you have a senior dog with a chronic condition, this specialty can help make their care more manageable and their life more comfortable.
After considering my own pet hospice experiences, and speaking with Dr. Dawnetta Woodruff with Lap of Love Veterinary Hospice and Dr. Christie Cornelius with Last Wishes In-Home Pet Hospice and Euthanasia, I’m eager to share these five reasons to include hospice as part of your older dog’s health plan, even if they have many years left to live.
Senior dog by Shutterstock.
1. Pet hospice veterinarians are experts in senior (advanced age) and geriatric (fragile health) care
Mobility problems, cognitive changes, neurological disorders, liver and kidney dysfunction, neoplasia, impaired vision and so many other ailments can affect your senior dog, and hospice vets have experience with them all. Dr. Woodruff stated, “I would estimate that 90 to 95 percent of our patients are senior pets, and nearly all are considered geriatric.” With this focused caseload, hospice professionals have keen insight into how to create a comprehensive treatment plan, one that may combine pharmaceuticals, standard plus alternative pain and mobility management, nutrition recommendations and environmental change tools.
For example, Dr. Cornelius told me about a 12-year-old Labrador patient suffering from serious mobility issues and related pain, cognitive changes and sleeping problems. When she was consulted, the doctor knew the dog’s prior treatment (joint supplement tablets and an NSAID, the latter of which was upsetting the dog’s stomach) was not a complete solution.
After thoroughly examining the dog and talking with the pet parents, she presented a recommendation that included the following: continuing the joint supplement tablets, introducing weekly joint function injections, changing to a “more gentle to the GI tract” NSAID, and adding specific night and morning pain prescriptions, massage, acupuncture, laser therapy, range-of-motion exercises and nutritional supplements.
After one week, the patient showed improved mobility, less pain, no GI upset and better sleep. After two weeks, improvement continued, with the dog able to enjoy moderate walks and family playtime! And after four weeks, the Lab’s quality of life was so enhanced that “A Different Dog!” was the family’s description of their pet.
2. Veterinary hospice provides focused care in your home
This means more than just increased convenience and decreased stress. Having a pet hospice provider come into your space allows them to get a more detailed picture of your dog’s life, which results in better understanding and treatment. Your pet’s environment (living space, typical pathways, bed setups), daily activities, meals, walking “gear” and home behaviors can be evaluated. This allows the hospice vet to know what is working well for the pet’s medical conditions and what could be altered.
When Dr. Woodruff entered the life of one 11-year-old canine patient named Chuck, he was restless and having trouble getting up and remaining stable while walking, and also clinging to his family (likely due to pain and anxiety). The doctor was able to not only modify his current NSAID dosing for pain and add two additional pain medications, but also recommend floor mats on his most-traveled pathways and the use of slings and harness supports specific to his mobility needs. Fourteen months after his initial visit, this dog is still doing well.
Dr. Dawnetta Woodruff recommended rugs to help keep Chuck on his feet. (Photo courtesy Lap of Love Veterinary Hospice)
3. Hospice care teaches you how to be proactive and in tune with your dog’s condition
Education of pet parents is a veterinary hospice priority. They may provide you with questionnaires, so you have a written baseline of your dog’s current conditions, and also give you monitoring instructions and logging tools. With pet hospice guidance, you can learn what to look for and what deserves serious concern and action — helping you to stay ahead of a “health crisis.”
4. Their help may be more accessible
Veterinary hospice providers may be more available than regular clinics, some offering extended hours and delivering prompt responses to concerned pet parent messages. In my experience, email answers, prescription changes and phone discussions happened quickly, and often outside the usual business hours for veterinary offices. With pet hospice, I believed a partner was there, ready to help me help my best friend!
5. Pet hospice support goes beyond doctor and dog
Understanding your strong emotions about your senior buddy, and also the difficulties you may be experiencing in providing care, vet hospice providers work to make it easier for you. They can connect you with published resources, and as Dr. Cornelius noted, “With a network of people who can help.”
These may include hospice provider support centers, articles, videos, and counselors and support groups to assist you with your current frustrations and worries, anticipatory grief and eventual bereavement. And Dr. Cornelius shared an exciting future pet hospice possibility: the development of a network of trusted sitters for hospice pets, so parents can confidently enjoy a few hours away from home.
So, if you have a senior pooch who is starting to battle some “old age” illness enemies, I recommend giving a veterinary hospice provider in your area a call. For even if the rainbow bridge seems far away, this caring service can help enhance your buddy’s life and make your remaining time together the best it can be.
About the author: Chris Corrigan Mendez, M.Ed., LPC, NCC is a licensed professional counselor in private practice and the proud guardian of two rescue pooches. Chris leads a monthly pet illness and loss support group and provides individual counseling to pet guardians. Follow her at www.ccmcounseling.vpweb.com and www.facebook.com/ccmcounselingstl.
The post How a Pet Hospice Vet Can Help Your Senior Dog appeared first on Dogster.
0 notes