I render a list Post to template after select it from window scroll event and i need to get model and event in this Post. I want to get view Post for using model or event from route when window scroll event? have a way to do it?
sub view:
Post = Backbone.View.extend({
    tagName: "div",
    className: "post", 
    initialize: function () {
        this.post = this.model;
        this.render();
    },
    render: function () {
        $(this.el).html(this.template(this.post));
        return this;
    }
});
view:
ListPost = Backbone.View.extend({
    tagName: "div",
    className: "listpost", 
    initialize: function(models, options){
        this.listpost = options.listpost;
        this.render();
    },
    render: function () {
    _.each(this.listpost, function (post) {
        $(this.el).append(new Post({model: post}).el);
    }, this);
    return this;
}});
route:
var AppRouter = Backbone.Router.extend({
initialize: function () {
    $('body').html(new ListPost([], {listpost: posts}).el);
    window.onscroll = this.scroll;
},
scroll : function() {
    var element = $('.post');
    var find_out = false;
    for(var i = 0; i< element.length; i++) {
        if(find_out) break;
        var post = element[i];
      if(post.getBoundingClientRect) {
        var rect = post.getBoundingClientRect();
        x = rect.bottom;
        y = rect.top;
        if(x > 0) {
            if(x > 480/3) {
                //result is post
                // how i can select this post to sub view Post
                find_out = true;
            }
        }
      }
    }
}});