Search code examples
csshyperlinkhref

Insert href in CSS. Possible?


I have small images coming from a big one in css. I would like them to have a different link each one and I was wonderin if is there any option to insert on it. thanks

.PP-3000469 .BL {
background-position:-375px -192px
}

This is my html content:

<span class="provider"><div class="PP-3000271"><span class="BL"></span></div></span>

how can I get that the content in the this class, when I click takes me to www.google.com for example


Solution

  • You can pull this off with jQuery. Assuming you have the file included in the HTML file,

    $(".PP-3000469 .BL").attr("href", "url");