Am getting data from ajax call and appending the data to table. Am getting title and url from the data. Now when i click on the url data of table , i need to call a outer javascript function with the clicked url data.
 <script>
 jquery(document).ready(function(){
   jquery(#button).click(function{
  showData();  
 });
 });
function showData(){
var total  = "";
var final = ""; 
  jquery.ajax({
url : "AJAX_POST_URL",
type: "POST",
data : input,
    dataType: "json",
success: function(jsondata)
{
    //data - response from server
     var document= jsondata.data.results;  //am getting array of objects
     for(int i=0; i<document.length; i++){
      var tr = "<tr>";
    var td = "<td>" + "Title : " +
    document[i].title + "Url :" + "<a href=''>" +  document[i].url + </a> + "</td></tr>";
   final = tr + td;
    total= total + final ;
        }
    $("#docTable").append(total) ;
},
error: function (jqXHR, textStatus, errorThrown)
{
            alert("error");
}
});
}
</script>
<script>
function download(){
  //inside this function i need to get the value of document[i].url
}
</script> 
 
    