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.
$(document).ready(function(){ var scrollPosition = ($('#viewContainer').width()/2 + $('.abc').width())/2; $('.abc').scrollLeft(scrollPosition); });