Option to go back to previous design

Comments

5 comments

  • K M

    Would love to go back to older versions which had more features and better clarity/accessibility too

    9
  • ihavenotfallenyet

    I would kill for this option!!

    4
  • BigTrëëDweller

    Please oh please let us not have to suffer the update!

    2
  • John Stiles

    In a web browser, the built-in JavaScript object window has an object called history containing the URLs a user has visited in their current browser window. You can use the history.back() method to tell the browser to go back to the user's previous page .

    One way to use this JavaScript is to add it to the onclick event attribute of a button. Here, we create the button using a <form> element, containing an <input> element of the button type.

    Insert the following HTML into your web page:

    <form>
     <input type="button" value="Go back!" onclick="history.back()">
    </form>

    The result looks like the button below. If you click it, you go back to the previous page in your history.

    -1
  • ihavenotfallenyet

    John, that's all well and good, but for anyone using mobile or the desktop app, that's not feasible.

    0

Please sign in to leave a comment.