$(document).ready(function(){
  add_link('http://findalong.com/session/43','First link added from js (hosted on the same server) dynamically ','div2');
  add_link('http://findalong.com/session/324','second such link ','div2');
});

function add_link(url,text,div_name) {
 alert("add_link");
  var div = document.getElementById(div_name);
  var new_link = document.createElement('a');
  new_link.setAttribute('href',url);

  var text_node = document.createTextNode(text);
  new_link.appendChild(text_node);
  div.appendChild(new_link);
  div.appendChild(document.createElement('br'));
}
