Tagged Questions

4
votes
1answer
736 views

HTML5 History Tutorial

Anyone knows of any good tutorial/guide that explains a proper approach for using HTML5 History with Pushstate and Onpopstate event?
2
votes
1answer
140 views

Browser Bookmarklet - How to track browser history?

There's a bunch of new services that, once installed, track your browser history. Like.fm, for instace, tracks all the songs you listen to. How hard is this? How is it done?
2
votes
1answer
737 views

Save history of UIWebView and reload it

I have a view with a subview of UIWebView and the view is obviously managed by a view controller. Say, I browse with this UIWebView for sometime and then navigate to a different view managed by a ...
2
votes
1answer
125 views

How do I determine whether I am going “forward” or “backward” through my History in GWT?

I am looking at History and History JavaDocs in GWT and I notice that there is no way to tell whether the forward or backward button was pressed (either pragmatically or by the user). The "button ...
2
votes
2answers
124 views

Is site first item in history?

How to find out if site is the first item in history? This doesn't work because of security reasons: if(window.history.item(0)==window.location.href)
1
vote
1answer
138 views

jQuery BBQ, How to detect a repeat click, which doesn't trigger a hashchange

I'm using the jQuery plugin hashchange: http://benalman.com/projects/jquery-hashchange-plugin/ $(function(){ $(window).hashchange( function(){ // location.hash }) ...
1
vote
3answers
747 views

Stop page from appearing in browser history

I have a simple flow A.html -> B.html -> C.html Now, B either 302's to C, or shows a progressbar, and then after some ajax call is done goes to C. When the user is on C, and they hit "Back" I ...
0
votes
0answers
924 views

How to get browsing history in Android [closed]

Possible Duplicate: Android read browser history I want to get my browsing history in my android phone and get the list of URLS and timestamps. Any idea on how to do this? Any help is ...
0
votes
1answer
184 views

IUrlHistoryStg2::ClearHistory() does not work from a service?

The IUrlHistoryStg2::ClearHistory() method is documented as Per-User. http://msdn.microsoft.com/en-us/library/aa767715(VS.85).aspx When calling it from a service running under the SYSTEM account, I ...
0
votes
1answer
299 views

How can I fix my ASP.NET AJAX problem when I navigate away from the page and back?

I'm developing an ASP.NET 3.5 application which uses AJAX via the UpdatePanel control. I'm also using History Points to manage the browser back-button functionality. This all works fine until I want ...
0
votes
1answer
180 views

Manage a `visited` links history in browsers

Can I edit the browser's visited links history? How can I dump full list of visited sites, or list of pages from some site? I'm interested in the solution for the most popular browsers: IE7-8, ...
0
votes
1answer
196 views

Preserving Page State in Silverlight (like IProvideCustomContentState)

Is there any way to store a Silverlight page's state in the browser's history as with IProvideCustomContentState (a WPF class)?
-1
votes
3answers
595 views

Copy on delete of browser history

I'd like to know if there is a programming hook or some other feature in windows vista and IE 7 or 8 that would let a computer administrator let the user think they were deleting their web browser ...
-2
votes
2answers
70 views

Easiest way to store data in Xml? [closed]

I'm working on my own web browser in C# and I'm a little bit stacked. My problem is, that I don't know how to store data like History, Favorites and Home page in Xml. I am just a beginner and ...