Can I have two data-roll="footer" sections on 1 page
- ...
- <div data-role="page">
- <div data-role="header">
- <h3>header</h3>
- </div>
- <div data-role="content">
- My page content
- </div>
- <div data-role="footer">
- Copyright 2013 blah blah blah
- </div>
- <div data-role="footer" data-position="fixed" id="foot_stat">
- 3 - New Messages
- </div>
- </div>
- ...
I want to use the second data-role="footer" as a status page to be displayed when my users have a new message. I want to use this as I can allow for the data-position="fixed" and use SHOW/HIDE when I want. The widget calls it FIXEDTOOLBAR but I see it has to be either the Header or Footer.
Is there a better way to get a fixed tool bar that doesn't have to be my header or footer, Or I can have a split footer with a copyright section and a tool bar section?
Thanks
Andy