Open Whisper40 opened 4 years ago
Hi @Whisper40,
Thank you for working with our products.
Can you please send us a short video on support@creative-tim.com so we can see clearly what is happening?
Thank you, Rares
Hello, video has been submitted
What was your response @rarestoma . Project is due and template cant be changed. let me try disable argon.js...
Prerequisites
Expected Behavior
My page should be generated as actually but with the sidebar that can be hidden.
Current Behavior
Actually, the side bar is fixed, cannot click on it to hide.. The side bar without ajax request is working fine, but with an ajax request that use the "argon.js..." it becomes blocked !
Failure Information (for bugs)
No errors in console, i have tested a lot of combinaison in order to find the JS that was causing my problem. And this is the argon.js
Steps to Reproduce
Context
I'm sure that only one Jquery is Loaded. I use Ajax to load my data As something like that : `
function SendSearchBar(){ var codesa = $("#valeursearchbar").val(); if(codesa.length >= 3){ $.ajax({ url : "../../ajax/searchbar.php", type : 'POST', data : 'codesa=' + codesa, dataType : 'html', success : function(data, statut){ $('#resultatenvssearch').html(data); }, error : function(resultat, statut, erreur){ ShowMessageNotification('error', 'Aïe ! C\'est une erreur de POST ! ', 4000, 'top-end'); } }); } }
`