Serve Jpeg 2000 wordpress and PNG fallback, How?

Mohamad Zidani

Power Member
Joined
Nov 17, 2016
Messages
530
Reaction score
65
Hello

I want to convert all my wordpress sites images to JPEG 2000 to increase speed, i want to setup a png fullback for the unsupported browsers. how can i do that?
 
You'll need to detect browser version in javascript and use

<img data-src="PNG FALLBACK" data-new-src="JPEG 2000 FILE">

Then make javascript choose between data-src or data-new-src for the src attribute.
 
Back
Top