I can't share full code now.
It's a portion of jquery code
$('#contentBox').hover(
function() {
posi("5",768,"box.jpg","i need link here","some text here");
}
I tried this
$('#contentBox').hover(
function() {
posi("5",768,"box.jpg","<a href='#'>i need link here</a>","some text here");
}
and this
$('#contentBox').hover(
function() {
posi("5",768,"box.jpg","<a href='#'>i need link here</a>","some text here");
}
But both are not working.
How to get link working here?
I mean i want to render i need link here
as <a href='#'>i need link here</a>