jQuery - get image filename

0 votes
267 views
added Sep 4, 2018 in jQuery by LC Marshal Captain (25,790 points)
var floorplanImg = $('.detail-content.floorplan img').attr('src'), 
    tarr = floorplanImg.split('/'), 
	file = tarr[tarr.length-1], 
	dataImg = file.split('.')[0];

console.log(dataImg);

 

lazacode.org - Malaysia's programming knowledge sharing platform, where everyone can share their finding as reference to others.
...