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
6 answers

how to listen key when popup is opened

I am writing an application to animate popup window. It was working great with my code. I want to close the popup window(i.e to slide-down it), when back button is pressed on device. But I couldn't listen any one key from device. I used…
Dhasneem
  • 4,037
  • 4
  • 33
  • 47
0
votes
1 answer

PhoneGap handle back button to not close the app

I have index.html and page.html index.html has an anchor to page.html I would the backbutton press and ask to the user if he really want go back to index.html This is my code: index.html First App
michele
  • 26,348
  • 30
  • 111
  • 168
0
votes
4 answers

Android back softkey how to use

I have a short question: I'm new in the worl of android and I started now to programm a little app. Now I have finished it and debugged it on my Samsung Galaxy S3. The application has 4 layouts. With a button you go to the next layout. So, I will,…
0
votes
2 answers

jQuery Cookie URL

I have this cookie jQuery.cookie("previousUrl", window.location.href, {path:"/"}); to store the previous page url. How can I use this cookie as a window.location so that when a user clicks a "back button" it will take them to the page url set in the…
user1813098
  • 25
  • 1
  • 7
0
votes
1 answer

Browser back button issue in Spring JSR 286 Portlets

I have developed a web application using sprint portlets JSR 286 which displays data in the table format in web browser. Below given is the code used to call the controller from JSP file. ` function…
0
votes
1 answer

Overriding back button to resume app

Below is the pictorial of the problem with my app. THE APP ON STARTUP: ON 100% PROGRESS: NOW, IF I HIT BACK KEY AND AGAIN RETURN TO APP: WHAT I ACTUALLY WANT: app should resume and not reload when the user returns after pressing back key. I…
Chirag
  • 1,189
  • 2
  • 21
  • 43
0
votes
3 answers

On back button kill android app

I'm using tab in my apps. The tabs are working fine. Once i click on the tab, particular activity appears under the tab. One of the tab has menu function and when i clicked on the menu tab, list of menu appears below the tab. When i clicked on the…
chinna_82
  • 6,353
  • 17
  • 79
  • 134
0
votes
3 answers

Prevent finishing activity when back button pressed if keyboard is open in android

I have one edittext in my activity. when user touches on that edittext, keyboard is open. But in all HTC device, after opening keyboard, and when user press back button, instead of hiding only keyboard, my current activity is finished and showing…
Mihir Shah
  • 1,799
  • 3
  • 29
  • 49
0
votes
1 answer

Browser Back button Issue iasp.net MVC4

I’m using following line of code to disable the browser back button problem after logout using asp.net MVC4. [OutputCache(NoStore = false, Duration = 0, VaryByParam = "None")] public ActionResult Logout() { try …
Pravesh Singh
  • 314
  • 1
  • 8
  • 27
0
votes
1 answer

JSF2 + Spring: View scoped bean not restored on back button?

I have a page that displays folders in a directory. It works just like Windows Explorer, but my page displays the folders using a datatable. When the user drills into a folder by clicking on the folder name, I will re-display the same page but with…
citress
  • 889
  • 3
  • 13
  • 35
0
votes
1 answer

How to add back button in the Android settings menu

I have a button in my main Activity which sends me to the phones location settings. The problem is that when I'm pressing the back button it sends me to the Androids home screen not in my apps main Activity. As I don't have access to the settings…
user2146209
0
votes
1 answer

Android : ActionView Collapses on pressing back button

I am using ActionBarSherlock library to get actionbar on pre-Honeycomb versions. I have an activity for which the actionbar menu is inflated from below xml menu.xml
Viren
  • 105
  • 2
  • 10
0
votes
1 answer

JSF SelectOneMenu Browser Back Button

I have a problem where I am using a SelectOneMenu for navigation:
DD.
  • 21,498
  • 52
  • 157
  • 246
0
votes
1 answer

Back button appears on popViewControllerAnimated:YES

I am making an app in which I created custom navigation bar - MyNavigationBar (extends UIView): MyNavigationBar.xib : MyNavigationBar.m : +(id)navigationBar{ MyNavigationBar * bar = (MyNavigationBar *) [[[NSBundle mainBundle]…
haawa
  • 3,078
  • 1
  • 26
  • 35
0
votes
1 answer

fast back button clicking makes page transitions not work

I'm a total amateur at jQuery, HTML, css and everything and I'd be really grateful if anyone with some more knowledge could help me. This is a site I'm in the middle of making for my girlfriend: www.sharyncunneen.com. If you click around on the…
user1981569
1 2 3
99
100