Issue
I have a button of which when I click it I want to alert the background-image URL of #div1.
Is it possible?
Solution
I usually prefer .replace() to regular expressions when possible, since it's often easier to read: http://jsfiddle.net/mblase75/z2jKA/2
$("div").click(function() {
var bg = $(this).css('background-image');
bg = bg.replace('url(','').replace(')','').replace(/\"/gi, "");
alert(bg);
});
Answered By - Blazemonger
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.