Posts by P. Calixto • 50 points
2 posts
-
0
votes3
answers1573
viewsA: Avoiding line breaks in text areas
Follow another option in jquery https://jsfiddle.net/PauloKlixto/sc9z66hh/embedded/result/ $(document).ready(function(){ $( "#teste" ).keypress(function() { if(event.keyCode == 13){ $( "#myform"…
-
1
votes3
answers273
viewsA: Incorrectly applied width media queries on mobile devices
Please check that your html contains the following tag inside your<head>: <meta name="viewport" content="width=device-width, initial-scale=1"> This tag is important because without it…