Css
.myStyle {
height: 10px;
background-image: url(../myImage.png);
}
html
<img class=myStyle src=<%scriptlet%> >
is there a way i can read the 'background-image' attribute value of the .myStyle in error handler and set it to src ?
Following code is not working: js
myImage = $('.myStyle', $el);
myImage.error(function () {
myImage.attr('src', background-image);
});
