Есть обьект.
function slider () {
this.rightScroll = "#right-scroll";
this.init = function() {
jQuery(this.rightScroll).click(function() {
this.rightStep();
});
}
this.rightStep = function() {
alert("ok");
}
}
Вызываю его.
$(document).ready(function() {
var slider1 = new slider();
slider1.init();
})
И вот что мне выдает.
this.rightStep is not a function
и не вызывает ее - в чем может быть проблема?