JSFiddle - React, Tailwind, and code Playground

by Michael Prosser

HTML

<div style="background-image:url(http://aninoob.com/assets/gaming/branches1.png); width:800px;height:800px;"></div>

JavaScript

function get_mesh_image(cssvalue){
    
    var bgimage = cssvalue;
    
    if(bgimage.substr(0,4) == 'url('){
        
        var preimage = bgimage.substr(4);
        var postimage = preimage.substr(0,preimage.length-1);
        
        alert(postimage);
        
    }
    
}

get_mesh_image('url(http://aninoob.com/assets/gaming/branches1.png)');