switchView.js 462 B

12345678910111213141516171819
  1. (function ($) {
  2. $.fn.switchView = function () {
  3. $(this).on('click', function(e) {
  4. e.preventDefault();
  5. change();
  6. });
  7. function change () {
  8. $.ajax({
  9. url: "/changeview",
  10. type: 'GET',
  11. dataType: 'json',
  12. success: function (reponse) {
  13. window.location.reload();
  14. }
  15. })
  16. }
  17. }
  18. })(jQuery);