changing slimscroll position











up vote
1
down vote

favorite












Is there a way to move scrollbar position on initialisation when using slimscroll? I found it's possible to do this using jQuery on native scrollbar with "scrollTop", but don't see how would I be able to do it using slimscroll. Here is a fiddle. http://jsfiddle.net/c8d3ohue/



Basically I want the first div to be scrolled down on init, like in this picture.



end-result



My code:



<div class="slimScroll" style="overflow-y:auto;height:200px;width:250px">
<div class="child-height-1" style="height:50%;overflow:hidden;position:relative">
<div class="child-content" style="height:300px;background-color:lightgreen">asd</div>
</div>
<div class="child-height-2" style="height:50%;overflow:hidden;position:relative">
<div class="child-content" style="height:300px;background-color:lightyellow">asd</div>
</div>
</div>

<script src="https://cdnjs.cloudflare.com/ajax/libs/slim-scroll/1.3.2/slimscroll.min.js"></script>
<script>
$(function () {
new slimScroll($('.child-height-1')[0]);
new slimScroll($('.child-height-2')[0]);
});
</script>









share|improve this question


























    up vote
    1
    down vote

    favorite












    Is there a way to move scrollbar position on initialisation when using slimscroll? I found it's possible to do this using jQuery on native scrollbar with "scrollTop", but don't see how would I be able to do it using slimscroll. Here is a fiddle. http://jsfiddle.net/c8d3ohue/



    Basically I want the first div to be scrolled down on init, like in this picture.



    end-result



    My code:



    <div class="slimScroll" style="overflow-y:auto;height:200px;width:250px">
    <div class="child-height-1" style="height:50%;overflow:hidden;position:relative">
    <div class="child-content" style="height:300px;background-color:lightgreen">asd</div>
    </div>
    <div class="child-height-2" style="height:50%;overflow:hidden;position:relative">
    <div class="child-content" style="height:300px;background-color:lightyellow">asd</div>
    </div>
    </div>

    <script src="https://cdnjs.cloudflare.com/ajax/libs/slim-scroll/1.3.2/slimscroll.min.js"></script>
    <script>
    $(function () {
    new slimScroll($('.child-height-1')[0]);
    new slimScroll($('.child-height-2')[0]);
    });
    </script>









    share|improve this question
























      up vote
      1
      down vote

      favorite









      up vote
      1
      down vote

      favorite











      Is there a way to move scrollbar position on initialisation when using slimscroll? I found it's possible to do this using jQuery on native scrollbar with "scrollTop", but don't see how would I be able to do it using slimscroll. Here is a fiddle. http://jsfiddle.net/c8d3ohue/



      Basically I want the first div to be scrolled down on init, like in this picture.



      end-result



      My code:



      <div class="slimScroll" style="overflow-y:auto;height:200px;width:250px">
      <div class="child-height-1" style="height:50%;overflow:hidden;position:relative">
      <div class="child-content" style="height:300px;background-color:lightgreen">asd</div>
      </div>
      <div class="child-height-2" style="height:50%;overflow:hidden;position:relative">
      <div class="child-content" style="height:300px;background-color:lightyellow">asd</div>
      </div>
      </div>

      <script src="https://cdnjs.cloudflare.com/ajax/libs/slim-scroll/1.3.2/slimscroll.min.js"></script>
      <script>
      $(function () {
      new slimScroll($('.child-height-1')[0]);
      new slimScroll($('.child-height-2')[0]);
      });
      </script>









      share|improve this question













      Is there a way to move scrollbar position on initialisation when using slimscroll? I found it's possible to do this using jQuery on native scrollbar with "scrollTop", but don't see how would I be able to do it using slimscroll. Here is a fiddle. http://jsfiddle.net/c8d3ohue/



      Basically I want the first div to be scrolled down on init, like in this picture.



      end-result



      My code:



      <div class="slimScroll" style="overflow-y:auto;height:200px;width:250px">
      <div class="child-height-1" style="height:50%;overflow:hidden;position:relative">
      <div class="child-content" style="height:300px;background-color:lightgreen">asd</div>
      </div>
      <div class="child-height-2" style="height:50%;overflow:hidden;position:relative">
      <div class="child-content" style="height:300px;background-color:lightyellow">asd</div>
      </div>
      </div>

      <script src="https://cdnjs.cloudflare.com/ajax/libs/slim-scroll/1.3.2/slimscroll.min.js"></script>
      <script>
      $(function () {
      new slimScroll($('.child-height-1')[0]);
      new slimScroll($('.child-height-2')[0]);
      });
      </script>






      javascript html css slimscroll






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 13 at 15:05









      brgs

      334314




      334314
























          1 Answer
          1






          active

          oldest

          votes

















          up vote
          1
          down vote



          accepted










          If you use jquery.slimscroll.min.js instead of slimscroll.min.js, you can do this like this.



          For your same HTML above, in the document ready you can do like this,



          var itemContainer1 = $(".child-height-1");
          itemContainer1.slimScroll({
          height: '200px',
          start: 'bottom',
          alwaysVisible: true
          });

          var itemContainer2 = $(".child-height-2");
          itemContainer2.slimScroll({
          height: '200px',
          start: 'top',
          alwaysVisible: true
          });


          See a fiddle,



          http://jsfiddle.net/anjanasilva/uypabr6o/



          How it looks,



          enter image description here



          Hope this helps.






          share|improve this answer



















          • 1




            Yep, it worked, ended up using this slimScroll version, thank you!
            – brgs
            Nov 14 at 12:01










          • Hello @brgs, I am glad my answer was helpful. Thanks for the up vote and accepting. Cheers.
            – Anjana Silva
            Nov 14 at 12:23











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53283901%2fchanging-slimscroll-position%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          1
          down vote



          accepted










          If you use jquery.slimscroll.min.js instead of slimscroll.min.js, you can do this like this.



          For your same HTML above, in the document ready you can do like this,



          var itemContainer1 = $(".child-height-1");
          itemContainer1.slimScroll({
          height: '200px',
          start: 'bottom',
          alwaysVisible: true
          });

          var itemContainer2 = $(".child-height-2");
          itemContainer2.slimScroll({
          height: '200px',
          start: 'top',
          alwaysVisible: true
          });


          See a fiddle,



          http://jsfiddle.net/anjanasilva/uypabr6o/



          How it looks,



          enter image description here



          Hope this helps.






          share|improve this answer



















          • 1




            Yep, it worked, ended up using this slimScroll version, thank you!
            – brgs
            Nov 14 at 12:01










          • Hello @brgs, I am glad my answer was helpful. Thanks for the up vote and accepting. Cheers.
            – Anjana Silva
            Nov 14 at 12:23















          up vote
          1
          down vote



          accepted










          If you use jquery.slimscroll.min.js instead of slimscroll.min.js, you can do this like this.



          For your same HTML above, in the document ready you can do like this,



          var itemContainer1 = $(".child-height-1");
          itemContainer1.slimScroll({
          height: '200px',
          start: 'bottom',
          alwaysVisible: true
          });

          var itemContainer2 = $(".child-height-2");
          itemContainer2.slimScroll({
          height: '200px',
          start: 'top',
          alwaysVisible: true
          });


          See a fiddle,



          http://jsfiddle.net/anjanasilva/uypabr6o/



          How it looks,



          enter image description here



          Hope this helps.






          share|improve this answer



















          • 1




            Yep, it worked, ended up using this slimScroll version, thank you!
            – brgs
            Nov 14 at 12:01










          • Hello @brgs, I am glad my answer was helpful. Thanks for the up vote and accepting. Cheers.
            – Anjana Silva
            Nov 14 at 12:23













          up vote
          1
          down vote



          accepted







          up vote
          1
          down vote



          accepted






          If you use jquery.slimscroll.min.js instead of slimscroll.min.js, you can do this like this.



          For your same HTML above, in the document ready you can do like this,



          var itemContainer1 = $(".child-height-1");
          itemContainer1.slimScroll({
          height: '200px',
          start: 'bottom',
          alwaysVisible: true
          });

          var itemContainer2 = $(".child-height-2");
          itemContainer2.slimScroll({
          height: '200px',
          start: 'top',
          alwaysVisible: true
          });


          See a fiddle,



          http://jsfiddle.net/anjanasilva/uypabr6o/



          How it looks,



          enter image description here



          Hope this helps.






          share|improve this answer














          If you use jquery.slimscroll.min.js instead of slimscroll.min.js, you can do this like this.



          For your same HTML above, in the document ready you can do like this,



          var itemContainer1 = $(".child-height-1");
          itemContainer1.slimScroll({
          height: '200px',
          start: 'bottom',
          alwaysVisible: true
          });

          var itemContainer2 = $(".child-height-2");
          itemContainer2.slimScroll({
          height: '200px',
          start: 'top',
          alwaysVisible: true
          });


          See a fiddle,



          http://jsfiddle.net/anjanasilva/uypabr6o/



          How it looks,



          enter image description here



          Hope this helps.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Nov 13 at 18:54

























          answered Nov 13 at 17:49









          Anjana Silva

          2,05222130




          2,05222130








          • 1




            Yep, it worked, ended up using this slimScroll version, thank you!
            – brgs
            Nov 14 at 12:01










          • Hello @brgs, I am glad my answer was helpful. Thanks for the up vote and accepting. Cheers.
            – Anjana Silva
            Nov 14 at 12:23














          • 1




            Yep, it worked, ended up using this slimScroll version, thank you!
            – brgs
            Nov 14 at 12:01










          • Hello @brgs, I am glad my answer was helpful. Thanks for the up vote and accepting. Cheers.
            – Anjana Silva
            Nov 14 at 12:23








          1




          1




          Yep, it worked, ended up using this slimScroll version, thank you!
          – brgs
          Nov 14 at 12:01




          Yep, it worked, ended up using this slimScroll version, thank you!
          – brgs
          Nov 14 at 12:01












          Hello @brgs, I am glad my answer was helpful. Thanks for the up vote and accepting. Cheers.
          – Anjana Silva
          Nov 14 at 12:23




          Hello @brgs, I am glad my answer was helpful. Thanks for the up vote and accepting. Cheers.
          – Anjana Silva
          Nov 14 at 12:23


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53283901%2fchanging-slimscroll-position%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

          ComboBox Display Member on multiple fields

          Is it possible to collect Nectar points via Trainline?