Is it feasible to display an external webpage in a view by using its URL? I am working with Backbone and Handlebars.
var AuthorizeInstagramView = Backbone.View.extend({
template: Handlebars.compile(template),
initialize: function () {
},
render:function(){
RENDER WEBPAGE FROM ITS URL
},
});
return AuthorizeInstagramView;
});
Any suggestions on how I can achieve this?