Link to home
Start Free TrialLog in
Avatar of Bob Schneider
Bob SchneiderFlag for United States of America

asked on

Scrolling race results page needed.

Is there a way to take a page with a jquery data table and have it scroll through the page (top to bottom) continuously?  I have race results pages that I would like to display on race day so that folks can view their results by watching the results scroll by.  Here is a current results page with a jquery table that does NOT scroll:

https://www.gopherstateevents.com/results/fitness_events/results.asp?event_type=5&event_id=629&race_id=1280

I would "clean the page up" for the scrolling page so that it is just the table.

If there is not a data table solution to this, is there another approach I can use to have this happen?

Thank you in advance!
Avatar of Scott Fell
Scott Fell
Flag of United States of America image

Like this? https://datatables.net/examples/basic_init/scroll_y.html

Or do you mean like a marquee only vertically?
Avatar of Bob Schneider

ASKER

Like a marquee, only vertically.
Just about any of the marquee plug ins will work http://aamirafridi.com/jquery/jquery-marquee-plugin#examples. This example you just need to add data-direction='up' to the parent container.   I would suggest doing this with div's instead of a table though but give it a try.
In your browser, hit f12.  Then go to the console tab. You will see some files such as bootstrap-submenu.min.js, jquery.maquee.min.js have a 403 status meaning they  must not have permissions.

https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/dist/css/bootstrap-submenu.min.css

<Error>
<Code>AccessDenied</Code>
<Message>Access Denied</Message>
<RequestId>91CFAD38F7943919</RequestId>
<HostId>
obOuxEKUA+EoyNGzZKTdpy9xT6IGovrN4eg1q35yiVsaFTgTI1sggSWnk2sq71zNShIpD6sG6Rc=
</HostId>
</Error>

Open in new window

Hmmm... No idea how to resolve that.  I don't even see them in there?
It looks like you just have to use a different cdn or url https://www.maxcdn.com/one/
I am not sure what you mean by that...sorry for my ignorance...I keep wanting to get a broader sense of jquery...maybe this week while we are traveling a bit I will read up on it.

Should I close this out and ask a more focused question?  I think it is clear that the scrolling piece would work (that was the focus of this question) if my JQuery weren't fubar...
ASKER CERTIFIED SOLUTION
Avatar of Scott Fell
Scott Fell
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Now I understand!  Thanks for the clarification Scott!