Questions tagged [back]

Method or control to return user to previous state, page or screen.

Refers to questions about preventing, detecting, handling, controlling, etc:

  1. The back button on web browsers
    • History of visited sites
    • Backing out of a "dirty" page
  2. The hardware or software back button on smartphones and other similar devices
  3. Navigation in Android/IOS applications
    • Returning to the previous view
    • Exiting the application (Android)

et cetera.

Does not refer to

  • Keyboard backspace key (^H)
  • Keyboard delete key (^?)
  • Reverse side of a physical device
  • Previous versions of an application
1484 questions
-1
votes
1 answer

Why can't i interact with the links on the backface?

1). "Link". I can't interact with the link/images on the backface of "follow us!" flip card on the bottom. (iv'e only used webkit). HELP :'( 2). Also when you move your cursor slowly towards the flip card, the card vibrates if your cursor's position…
So lost rn
  • 327
  • 3
  • 4
-2
votes
1 answer

How to prevent spacing between content and back button in SwiftUI

The whole question is in the title. The 'United Kingdom' header should be at the top, but instead it is place away from the back button. The worst part is, when I then go onto the 'Diamond-Encrusted Ring' page, it creates a new back button and even…
-2
votes
1 answer

Laravel - How to check current month inside an date string?

So, I have a field on my database that keeps the date, just like the created_at field, year-month-day format. I need to create a method to do a query to return all results where month = current month we are living. How can I check this on…
-2
votes
1 answer

Follow the specified link by clicking arrow back in the browser

I’m trying to implement back-click, go back in the browser to the specified link, the problem is that the method only works when the user clicks. window.onpopstate = function(event) { event.preventDefault(); …
Dmitry
  • 1
  • 1
-2
votes
1 answer

BigCommerce Back button needed

Is there some way that we can possibly incorporate/code a simple old style universal 'Back' button on all our product pages? BigCommerce only allows for a standard breadcrumbs trail below the main menu that is not intuitive or user friendly for many…
lexip
  • 1
  • 1
-2
votes
3 answers

Click back counter

Hello i have this code which works for redirect back Redirect Users leaving your site - Javascript back button hack var ref = document.referrer; var siteurl = "YOUR URL HERE";//if you have www, then use www.…
-2
votes
1 answer

C# UWP passing Parameter Backward

is there a way to pass data to the previous page when the back button is pressed and the BackRequested command is executed. When navigating forward, I use the following code: this.Frame.Navigate(typeof(Warenkorb), groups); Can someone help…
Hubii
  • 348
  • 1
  • 14
-2
votes
1 answer

android on back pressed

@Override public void onBackPressed(){ if (back_pressed + 2000 > System.currentTimeMillis()){ Homepage1.super.onBackPressed(); } else{ Toast.makeText(getBaseContext(), "Press once again to exit",…
-2
votes
6 answers

How to go back to Previous Activity?

Someone ask me a question a week ago and till now i did not get the answer of that question.The question was how we can go back to previous Activity by pressing back button of device without using intent or finish().
DkThakur
  • 516
  • 2
  • 5
  • 17
-2
votes
2 answers

How to CSS button back to top in footer

How to create button back to top. In image, button in the middle content and footer and this have 2 circle as border.
M.Jack
  • 7
  • 1
  • 2
-2
votes
1 answer

How to Manage back press in Fragments

I want to manage all fragment in back press. When i click back press then open previous fragment and finish present fragment.
Hardik Vaghasiya
  • 298
  • 1
  • 3
  • 11
-2
votes
1 answer

How to Disable Browser Back Button after click submit

in my asp.net c# code I'm not manage any session,cooks values.After click submit button redirect into dashboard page in dashboard page how can i disable back button
Chenna Rao
  • 111
  • 3
  • 11
-2
votes
1 answer

Back Button Refuses to Hide

For some odd reason I cannot hide the back button from the navigation bar. I've tried everything below, but nothing works. Any other suggestions? **The "Back" button appears, but nothing happens when pressed. …
Adam Cooper
  • 867
  • 1
  • 6
  • 23
-2
votes
4 answers

onBackPressed() not working while coming from another activity

I have three activities: First, Second and Third. I used this method in Second activity: public void onBackPressed() { super.onBackPressed(); finish(); } and this on Third activity: public void onBackPressed() { super.onBackPressed(); …
Ramu
  • 123
  • 8
-2
votes
3 answers

Losing form data

I want to use back option on php without losing the form data. I've tried this way; if ($username==""){ echo 'Please fill. '; } else{ $doaction; } And this way; $url=…
Mad Gemini
  • 23
  • 9
1 2 3
98
99