I have a delete button that deletes the data shown in a field on a data-role page, one of several div pages on this html page. After the user hits the delete button, I want to allow them to hit a Refresh button so they can see that the data has been cleared from the field.
I have been unsuccessful in figuring out how to refresh the page so the correct data-role page shows up. I tried ...
<a href="name.html"
<a href="name.html#section"
<a href="#section"
... and none of these brings me back to the right page. I added rel="external" to each and that did not help.
I tried making an image on the div page an anchor, but that did not work either: <a name="section"><img src="picture.jpg"></a>
How do I refresh the page so I end up back in the div I want?