\ \ '; }); }else{ html += '\
\
\

Nincs találat.

\
\
\ '; } $('#search-results').html(html); }else{ Swal.fire("", json['message'], "error"); } }, error: function(error){ console.warn(error); } }); }); $('#menu-competitions').on('click', function(){ console.log($(this).find('ul').css('display')); if($(this).find('ul').css('display') == 'none'){ $(this).find('ul').css('display', 'inline-block'); }else{ $(this).find('ul').css('display', 'none'); } }); $('#lang-change-select').on('change', function(e){ e.preventDefault(); let locale = $(this).val(); $.ajax({ url: "https://makronomintezet.hu/change/lang", type: "POST", headers: { 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content') }, data:{ locale: locale }, success: function(json){ json = JSON.parse(JSON.stringify(json)); if( ! json['error']){ location.reload(); }else{ Swal.fire("", json['message'], "error"); } }, error: function(error){ console.warn(error); } }); }); });