Question now: where
and how might I place the bookmark to find the
divider?
I'm afraid that jQuery Mobile
doesn't support navigation to anchors (as you say
"bookmark"), because it uses the hash (# part of URL) for
Ajax navigation between pages.
I
see you've used
name=
rather than i
d=
.
Not only is
name=
rather obsolete, but it also doesn't get around the fact
that JQM doesn't support navigation to anchors.
Search
the forum for solutions - the problem has been visited many times. I
think there is a plugin, but probably not updated for current JQM version.
I
typically use iScroll on my pages, and it has a function to scroll
to any selector, so I use CSS classes instead of anchors, and a bit
of JS to catch a click event on the button, etc. (You can't
just use an
href
,
unless you go with some plugin solution.)