I am able to interrogate and reset a text widget
alert($(‘#m1-marks-text1’).text()); WORKS
$(‘#m1-marks-text1’).text(‘hello world’); WORKS
But I want to change the src of an image button
alert( $(‘#m1-marks-image2’).css(‘-webkit-border-image’) ); WORKS
$(‘#m1-marks-image2’).css(‘-webkit-border-image’, ‘url(‘ + images/green.jpg + ‘) 1 1 1 1 stretchstretch’ )); DOES NOT WORK
Must be doing something wrong but dunno what
David