michaeldank
9/11/2017 - 12:37 AM

Change buttons background image source from thumbnailsmall directory to thumbnaillarge

Change buttons background image source from thumbnailsmall directory to thumbnaillarge

<script>
$(function(){
    //LOOP OVER EVERY BUTTON
    $(".butFrame").each(function(){
        //GET THE STYLE
        var style = $(this).attr("style")
        //REPLACE THUMBNAILSMALL WITH THUMBNAILLARGE
        var newStyle = style.replace("thumbnailsmall","thumbnaillarge");
        //CHANGE SRC TO NEWSRC
        $(this).attr("style", newStyle)
    });
});
</script>