You will recieve your password to this address. Address is not made public.

Your preferred username that is used when logging in.

Vertical Scrolling Issue with Autoscroll Created Nov 19, 2009

This thread is solved

Views: 1127     Replies: 1     Last reply Sep 11, 2010  
You must login first before you can use this feature

Ginn T

Posts: 2

Registered:
Aug 19, 2009

Vertical Scrolling Issue with Autoscroll

Posted: Nov 19, 2009

I cannot get the autoscroll to work with a vertical orientation.

Here is the code I have

              <div id="jobs" class="scrollable vertical">
              	<div id="jobItems" class="items"></div>
              </div>
              <script type="text/javascript">
							$("#jobItems").load("../../recruiter/scrolltext_new.php");
                  $(function() {         
                           
                      // initialize scrollable  
                      $("div.scrollable").scrollable().autoscroll({ 
                          vertical:true,  
                          autoplay: true,
                          api:false,
                          clickable:true 
                           
                      // use mousewheel plugin 
                      }).mousewheel();     
                  }); 
                  alert("");
              </script>
CSS

#jobs {
	padding: 0px 10px 10px 15px;
	width: 280px;
	height: 160px;
	position: relative;
	overflow: hidden;
}
div.scrollable {
  position: relative;
	overflow: hidden; /* vertical scrollers have typically larger height than width */;
	height: 665px;
	width: 700px;
}
/* root element for scrollable items */
div.scrollable div.items {
	position: absolute; /* this time we have very large space for the height */;
	height: 20000em;
}

I have tried everything I know. Help would be appreciated.

Thank you

Link to live site
http://www.riverainc.com/rcg/careers

Shadowsong

Posts: 36

Registered:
Sep 11, 2010

» Vertical Scrolling Issue with Autoscroll

Posted: Sep 11, 2010

Reply to: Vertical Scrolling Issue with Autoscroll, from tdginn01
I've got.
Not Found