in the light box i am trying to retrieve the data from the data caption it works fine when i give p tag, div tag but it does not work for a tag with href on it in the light box i wanted to display links which redirect to some other page
providing my fiddle below
<div data-caption="<a href="http://www.w3schools.com/" >Create</a> <div>View/Edit</div> <div>Labels</div>" data-image="http://www.defie.co/designerImages/thumbnails/inventory.png"></div>
<div data-caption="<div>Paul Scholes</div> <div>Wayne Rooney</div> <div>Sir Alex Ferguson</div>" data-image="http://www.defie.co/designerImages/thumbnails/search.png"><div>ko kopkopwkop</div></div>
Your double quotes around the HREF attribute break the data-caption. Single quotes work:
http://jsfiddle.net/hansvedo/pRvjC/1/
<div data-caption="<a href='http://www.w3schools.com/' >Create</a> <div>View/Edit</div> <div>Labels</div>" data-image="http://www.defie.co/designerImages/thumbnails/inventory.png"></div>