Posts by tthaisnunes • 366 points
12 posts
-
0
votes3
answers426
viewsA: How to Take "resize" from a textarea?
The following css property disables resize behavior of textarea textarea { resize: none; }
-
0
votes1
answer434
viewsA: How to pass the html script to css?
The best practice for working with scripts is to use an external file and call it within a tag script The code below should be in a separate file. For example: script.js…
-
1
votes1
answer2919
viewsA: Put responsive website
First question: It is possible to make a site in both ways, as you have already developed the site on the desktop, you will be able to keep the concept of Desktop first and make from the largest to…
-
9
votes2
answers40270
viewsA: How do I mask an input?
You can use the jQuery Mask: https://igorescobar.github.io/jQuery-Mask-Plugin/ With it you can apply various types of mask. Suffice link the library in your html:…
-
3
votes1
answer2265
viewsA: jQuery validation with ajax does not work
The jQuery validate has a function where, before submitting the form you check if it is valid. See the following code: //Guarda o form em uma variável var form = $("#form_redes_sociais");…
-
0
votes1
answer526
viewsA: How to create a Video Game style scroll horizontal menu?
This library does exactly what you’re looking for: http://darsa.in/sly/#! download Her library is very explanatory and has some really cool models of horizontal scroll. If you prefer, there is an…
-
1
votes2
answers4560
viewsA: Display freight calculation on each WP product page
There is this native function in the mail plugin Versão 2.3.0 or greater. To access it, just follow the path: In admin panel > Woocommerce > Settings > Delivery > Couriers. Inside this…
-
1
votes1
answer248
viewsA: How to hide a dragging Drawer menu?
You need to use jquery mobile to perform this menu, because native, there is no way to capture the function swipeleft and swiperight The link to download jquery mobile is:…
-
3
votes1
answer66
viewsA: Set CSS button width to 100% when mobile
Put media queries to solve this problem. See the following example: @media screen and (max-width: 480px) { button { width:100%; } } This link explains step by step how we can use media queries:…
-
0
votes1
answer62
viewsQ: I run with different images on mobile and desk
Good morning, everyone, I’m developing a responsive site, in it I will use a standard bootstrap carousel, however, will be different images when the carousel is on mobile and desk. Does anyone have…
-
0
votes1
answer465
viewsA: Add button under div using the after() function
To insert an element after which it was clicked you must use the function insertAfter jQuery. Change your code to the following: $(".classeDaDiv").click(function() {…
-
0
votes2
answers351
viewsA: How to remove the blue border of the tabpane?
Try something like: Outline: 0; in his css It will remove the blue edge when the element is in :focused