Posts by Mateus Veloso • 1,852 points
105 posts
-
0
votes1
answer38
viewsA: How to clear an event
This is happening because you add the event: $(document).on("submit","form",function()); twice, so if a form der Ubmit it will fall in both understand? I made an example where you will clearly see…
-
0
votes1
answer106
viewsA: Why does column-Count not work in firefox?
I think there is something that is breaking without column-Count the same is supported from Mozilla 2.0 if you can add more details or a larger chunk of code. Thank you! Any doubt about : w3schools…
-
1
votes1
answer66
viewsA: Download site without refresh?
With the arrival of Html5 and its pushState you can easily, see the example below. Any doubt please ask again at most just take a look and understand how it works! window.history.pushState("objeto…
-
1
votes0
answers33
viewsQ: How to enable cross-origin on Tomcat?
Basically I need to enable the Cross-Origin in my Tomcat 8.5. I want to know the right way to do this and what the risks are?
-
1
votes3
answers483
viewsA: Store URL snippet - Javascript
Good morning, I did it in a way that you can easily change the code. I hope it helps you! var url = 'http://google.com/pagina.atual?teste'; url = url.split('/')[3]; if(url.indexOf('?') != -1){ url =…