I was trying to position horizontal scroll bar at the center of that div. I tired with window.scrollTo() but this works for page scroll and not for div scroll.
This is an old question, but you can now use scrollIntoView for this, depending on the browsers that must be supported:
$(document).ready(function(){ document.getElementById('center').scrollIntoView({ inline: 'center' }); });
Updated fiddle