Back problem / Doubt button

0

I have a problem with a back button because I have a workers page that can be opened in several sites for being ID1

Example: Positive queries: Show me the page workers

Negative queries: Show me the page workers

How can I put a button back to the previous page because they are different pages?

    
asked by anonymous 22.07.2014 / 16:42

1 answer

1

It's hard to understand what you meant, but you want to go back to the previous page before accessing the workers page regardless of what.

If this is what you need, the code below will solve your problem.

jQuery:

$('.voltar').click(function() {
    history.back()
});
    
23.07.2014 / 01:26