switchView.js 504 B

1234567891011121314151617181920
  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. console.log(reponse);
  14. window.location.reload();
  15. }
  16. })
  17. }
  18. }
  19. })(jQuery);