css - load html table at specific column -
i'm trying on page load html table load @ specific column, wouldn't know start this.
i've uploaded here see demo: http://jsfiddle.net/3efqd/
i've tried in body tag:
onload=' location.href="#right_column" '
and added id='right_column'
correct td
didn't work
trying load on cell labeled "this one"
here's fiddle incorporating width of header: fiddle again, jquery solution, same above needs subtract header width hit right position. see fiddle id's added
$(document).ready(function(){ var hw = $('#headerwidth').width(); var f = $('#scrolltome').position().left - hw; $('.inner').scrollleft(f); })
Comments
Post a Comment