i have a url value from the json response which is like
url=response.url.urlname;(//suppose this contains the value like www.google.com)
now i want to include it in anchor tag in my javascript code web is div in html page
<div id="web>
$("#web").append('<a href="http://"'+url+'"" rel="external" data-direction="reverse">'+url+'</a>');
i am unable to load the page.can anybody help me for this concatenation?