Scroll on focus

I have input types and I want that it will scroll up and selected text box will be on top

$$('.focus-input').focus( function() {
    $$('.page-content').scrollTop($$('#profile-holder').offset().top, 300);
});

it seems it behaves incorrect