browser-history

What is a non intrusive history back button or alternative if Javascript is disabled?

If JavaScript is disabled what's a way of linking to the previous document in the session history? Can PHP be used to simply link to the REFERRER or is there a better alternative? Edit: Further to this, can previous post variables be retained? ...

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 history but actually just copy it off to another folder. The new folder would use the date and time deletion was attempted as its naming conve...

Prevent user keeping browsing information from my website

I want to prevent my website from putting any information in the browser history of any user. I am using asp .net to build my website. Any idea how can i perform this? ...

Android: Anyone knows how long the web history is retained for?

I was wondering if anyone knows if android clears up the websites visited log from inside its database based on date or number of entries in the database... Any inputs? ...

how to programmatically access iphone browser history

hi experts, is it any way to access the iphone's browser history(safari) programatically thanks ...

"Back" behavior in rich web apps, true user assumption?

Hello Community, Many client side code libraries & tool kits, for example Yahoo's YUI and Google's GWT support managing state history for the user experience. When implemented it allows a user to revert to a previous app state on the same page when they click the Back button or Backspace key. In this video from Google IO the impleme...

Loop over "history" in javascript?

Is there a way to loop over the "history" object in javascript to find a specific page in the history? ...

Jquery: mark links as visited without opening them?

I have no intention of just altering the link (I hear that's impossible, but if it's not I'd love to know how). I'm fine with adding it to the the browser history if that needs to be done. I'd like to loop through all <a>'s on a page and change their state to visited. For example: $("a").each(function(){ //mark as visited (somehow?)...

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)? ...

How to clear browsers (IE, Firefox, Opera, Chrome) history using JavaScript or Java except from browser itself?

How to clear browsers (IE, Firefox, Opera, Chrome) history using JavaScript or Java, except clearing it from browser itself? ...

How To Implement a Safari Browser Plugin?

I want to implement a Safari plugin under OS X that manages the browsing history in an alternative way. More precisely, i need to have access to data like "a link is clicked", where the link leads and on which page the clicked link is located. In addition to that, i need to draw a representation of the gathered data. I want it to feel as...

Do i need to modify all links in order to ajaxify this website ?

I built this website using ajax (via jquery) instead of full page refresh. Right now, it does not support the browser's back/next buttons, nor deeplink bookmarking. I'd like to implement these functionalities, using for instance the jquery bbq plugin but i'm not sure i understand completely the concept. The main point i'm missing is thi...

Getting ajax history

Is it possible to get a history of all past ajax calls from the browser? If not, are there any ffx plugins or similar that will store all your ajax request in a similar way to the normal browser history? ...

Can you use hash navigation without affecting history?

I'm afraid it might be impossible but is there a way to change the hash value of a URL without leaving an entry in the browser's history and without reloading? Or do the equivalent? As far as specifics go, I was developing some basic hash navigation along the lines of: //hash nav -- works with js-tabs var getHash = window.location.hash...

Does back/forward in the browser change javascript variables?

<script type="text/javascript> var x = 0; //this occurs in the beginning of the page. $("#button").onclick{ x = 1; } </script> Let's say the variable "x" changes to 1. Then the user clicks a link. When the user clicks "back", will x be 0 or 1? ...

JavaScript: Navigate to a new URL without replacing the current page in the history (not window.location)

I know how to use window.location. The problem is that, (at least in FF) it erases the page you are on from the history. e.g., I'm on page A, I navigate to B and window.location is used to send me to C. If on page C, I click back, I end up at A, not B. Is there some other way to navigate to another page without erasing the current page ...

remove specific field after clicking back in browser or using history.go(-1)

i have a form with a capacha, if the capacha was entered wrong, after submit the page is doing a "history.go(-1)" and all fields include the capacha input are back on the screen right now i have a js that clear that - but now that i need it in several places, i want to know if it possible to clear a form field after back with something...

Manage a `visited` links history in browsers

Hello 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, Firefox3, Safari4, Chrome3, Opera9.50+ The best will be solution, which can be scripted in JS+CSS. But plugins or instructions for manag...

Browser history back with scrollable div

When I Jump to section 1 & 2 everything works fine, and the browsers I tested (IE8, FF3.6, Chrome 5.0.342.3) scrolls down to the respective anchor in the div. But when I press the browser history back button the div won't scroll back up. Is there some way to make this work without using javascript ? <div id="scrolldiv" style="overflow:...

ASP.Net: Expiring a page when navigating back

Basically all pages on this site I am building cannot be accessed when the user clicks on "Back" (or with key control) in the browser, and the page should expire if one is trying to navigate back in history. I put into Global.asax::Application_BeginRequest Response.Cache.SetCacheability(HttpCacheability.NoCache) Response.Cache....