var UserView = function(el, user) {
this.el = el;
this.user = user;
};
UserView.prototype.showImage = function() {
this.el.append('

');
};
// let's just create a super simple user object
var user = {
image: 'http://example.com/image.png'
};
// initialize with the element the view owns and a user
var view = new UserView($('.user'), user);
// ... and now we can do stuff which changes the DOM
view.showImage();