Thanks for the answer, it works using then following code:
$(“<style type=’text/css’>#m1-LottoWiz-btS” + i + “{ -webkit-border-image: url(images/” + I1 + “) 1 1 1 1 stretch stretch; }</style>”).appendTo(“head”);
$(“<style type=’text/css’>#m1-LottoWiz-btS” + i + “.m1-clicked{ -webkit-border-image: url(images/” + I2 + “) 1 1 1 1 stretch stretch; }</style>”).appendTo(“head”);
but this don’t works:
$(“<style type=’text/css’>#m1-LottoWiz-btS” + i + “.m1-clicked{ -webkit-border-image: url(images/” + I2 + “) 1 1 1 1 stretch stretch; }</style>”).appendTo(“head”);
$(‘#m1-LottoWiz-btS’ + i).css(‘-webkit-border-image’, ‘url(images/’ + I1 + ‘) 1 1 1 1 stretch stretch’ );
perhabs it’s useful to change it in the learning-center 😉