You cannot have like quotes inside a string delimited by those quotes, unless they're escaped. So you can:
Code:
imagearray: [
["images/bh1.jpg", "", "", "<span class='caption-text'>I will get this project done on</span><a href=\"#\" class=\"links\">time</a>"],
["images/bh2.jpg"]
],
Or:
Code:
imagearray: [
["images/bh1.jpg", "", "", "<span class='caption-text'>I will get this project done on</span><a href='#' class='links'>time</a>"],
["images/bh2.jpg"]
],
Or you could change the delimiting quotes, which would mean that you would have to change or escape those around the class value:
Code:
imagearray: [
["images/bh1.jpg", "", "", '<span class="caption-text">I will get this project done on</span><a href="#" class="links">time</a>'],
["images/bh2.jpg"]
],
Bookmarks