just i want to make back button in my site. once i click the button it need to take the url in to previous page. how can i make this using jquery?
Try this: am using materialise css.
Backchevron_left
In your jquery script file add
$("#back_btn").click(function (){ window.history.back(); });
within the document ready function.