Questions tagged [back-button]

A button that will take the user back to the previous state that they were on.

A back button, often depicted with leftward facing arrow icon, is a basic control that allows the user to return to a previous application state.

In web browsers, a historical record of each time a user navigates to a new page is kept. Clicking the browser's back button will return the user to the previous page in the history.


For example, if a user navigates first to google.com (1) then to facebook.com (2) then to youtube.com (3), their browsing history will include all the pages they visited at each site in the order they were viewed (1, 2, 3).

While on youtube.com (3), if the user clicks the back button, they will then be taken to facebook.com (2). If they click the back button again, they will be taken to google.com (1).

1630 questions
0
votes
1 answer

Browser back button creating problem

I have a dynamically generated gridview on page with sorting provided in the code behind also. Now i move from page A to page B using a link, this also works fine. But when i press the browser back button and come back to my page A and again try to…
user175084
  • 4,550
  • 28
  • 114
  • 169
0
votes
2 answers

How to disable exit functionality on press of android device back button in phonegap app?

I have a sample phonegapp application which plays an audio stream(i.e- kalimba.mp3) in background of the app. Playing audio in background is working fine. when I press device home button application is getting minimized but audio playing continues …
Fabre
  • 57
  • 5
  • 18
0
votes
2 answers

Switching between activities without reloading fragment and rss feeds

I have a homescreen containing mapfragment and rss feeds, which loads on startup. I have another few activities that contains magfragments just bigger. My problem is that when i move between activities they restart, i want them to remain loaded up…
prophetz
  • 107
  • 2
  • 10
0
votes
1 answer

Swipe back in navigation controller on iOS 7 with backbutton hidden

is there any way to get the ios7 swipe back functionality if I have a custom backbuttom item? With the functionality I mean exactly the same: swiping the finger while the back view is getting visible and be able to swipe left to don't…
sergiocg90
  • 489
  • 2
  • 11
  • 24
0
votes
0 answers

Backbone render method called but different view displaying on back button press

I have a backbone.js application, and I'm running into a situation where I need to reload a url. In other words, the user is on a current url, and I need to reload the page. To do so, I'm using the solution from this post: Backbone: Refresh the same…
coder
  • 10,460
  • 17
  • 72
  • 125
0
votes
0 answers

Windows Phone 7 Back Key Press event change?

I want to do some work if user presses back key on the phone with navigating back How to do it? With following code it cancel navigation to back page & do some stuff but i want to do stuff while going back please help... protected override void…
xsheru
  • 467
  • 4
  • 25
0
votes
4 answers

Android Back Action Button Result in App Crash

I am building a new application which composed of 3 activities namely: - Splash Screen - Activity A - Activity B, and - Activity C From activity A user can go to both activities indicated below: A -> B -> C (from act A user can go to B then to…
Jeremy
  • 2,516
  • 8
  • 46
  • 80
0
votes
3 answers

how implement the back button in webview?

I have a simple webview to shows a forum..i need "mapping" the back button to go back in the webpages of the forum of course. I tryied in This way but gets me a fatal error public class MainActivity extends Activity { protected WebView webview; /**…
David_D
  • 1,404
  • 4
  • 31
  • 65
0
votes
2 answers

Browsers back button is causing issues with hidden field

I've run into an interesting issue and I'm not sure how to solve it. I maintain a hidden value on my homepage that tracks the events loaded on the page. The event position gets updated after the page loads. When navigating away from the page and…
Paul
  • 11,671
  • 32
  • 91
  • 143
0
votes
1 answer

load values in html form using php session

I'm trying to load session values for textboxes,radio buttons,dropdown and checkboxes (for back button click scenario). when I navigate from one page to next page I do store all checked/selected/entered values in session. when i click on back button…
Emma
  • 617
  • 2
  • 12
  • 29
0
votes
1 answer

ContextMenu Button back Android disable click

I have an application in Android, This application has a ListView with this event. ListView titulos = (ListView)findViewById(R.id.lv_titulos); titulos.setOnItemClickListener(new AdapterView.OnItemClickListener() { @Override …
Victor Company
  • 1,177
  • 1
  • 9
  • 9
0
votes
1 answer

Browser back button doesn't work when content is loaded into an iframe

I have a javascript function using which I display some content when the user clicks on a link. function showContent(filename){ var oldcontent = $('#content').html(); var srcUrl = getSourceUrl(filename); $('#content').html(oldcontent +…
lloydh
  • 395
  • 2
  • 5
  • 16
0
votes
2 answers

How Can I Keep Class Applied Using toggleClass() when Using Browser's Back Button?

I'm using the jQuery toggleClass to add a class to a DIV when a button is clicked. When the class is added, the DIV is expanded to show all content in the DIV with height:auto;. My problem arises when I click on a link that takes me to another…
Metzed
  • 470
  • 1
  • 8
  • 27
0
votes
1 answer

ruby on rails, redirect if hitting back button in browser

I have a searchform which displays available rooms to book, if i book a room and hit the back button in my browser afterwards, the searchresults are still displayed. Is it possible to reload the page when i hit back, so that the user has to click on…
AndyB
  • 391
  • 2
  • 4
  • 17
0
votes
1 answer

Dismiss Custom Alert Dialog on Back button pressed of hardware in android

I am having problem on back button of hardware. In my main Activity, I have one List view(say 1). When I click on item of this List view(1), one Alert Dialog appears, in this alert dialog, there is one List view(say 2). Data of this List view(2) are…
Looking Forward
  • 3,579
  • 8
  • 45
  • 65