Considering the following inline CSS on an image...
<img class="selectedImg" style="-webkit-filter:grayscale(22%) blur(2px) brightness(91%) contrast(120%) hue-rotate(29deg) opacity(86%) invert(15%) saturate(261%) sepia(30%)" src="http://lorempixel.com/400/200/sports/"/>
...how can I use jQuery/javscript to read the values and put each in a variable to achieve this as a result?
var gs = '22',
blur = '2',
brightness = '91',
contrast = '120',
hue = '29',
opacity = '86',
invert = '15',
saturate = '261',
sepia = '30'
What I have started: http://jsfiddle.net/kthornbloom/fvp9d732/2/