Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

how to make a scroll horizontally button in html

  //Using jQuery code
	$('#right-button').click(function() {
      event.preventDefault();
      $('#content').animate({
        marginLeft: "+=200px"
      }, "slow");
   });

     $('#left-button').click(function() {
      event.preventDefault();
      $('#content').animate({
        marginLeft: "-=200px"
      }, "slow");
   });
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #scroll #horizontally #button #html
ADD COMMENT
Topic
Name
6+6 =