I\'m trying to get innerHTML of a DIV that is located on external page. It is possible to do this using this kind javascript code?
Since it looks like you are using jQuery, something like this should be pretty close:
var html; $.get("my_page.html", function(data){ html = $(data).find('#glr1').html(); });