Posted on: 7/23/2014 12:18:56 PM | Views : 371

Hi,
I have a url and its correxponding text(dynamically created), which shows in IE 9, but does not render in other browsers like Mozilla,chrome, safari.
The url is created in javascript file and uses CSS.
Below is the code used:
// captionURL = "http://google.com" //imageTitle = "Google" var right = 20; var newimageURL = '<table class="tblContent"><tr><td class="tblLeftContent"><a style="color:white;" href="' + captionURL + '"> <img src="/Images/arrow.png" alt="' + imageTitle + '"/></a></td>'; newimageURL = newimageURL + '<td class="tblRightContent"><div class="middlecontent"><a style="color:white;" href="' + captionURL + '">' + imageTitle + '</a></td></div></tr></table> ...

Go to the complete details ...