Posts by Luiz Paulo Evangelista • 21 points
4 posts
-
0
votes1
answer1130
viewsA: How can I get the value of a div with id=x
Friend, Your Question is a little Vague. However I made 4 examples that can help you Follows Below. $("#btn1").click(function () { var conteudoDiv1 = $("#div1").text(); // Pegar texto Com Jquery…
-
1
votes2
answers70
viewsA: How to use Contains without capitalization and minuscule
I believe the most elegant way to solve this, eh using an Xtension Method. using System; using System.Collections.Generic; using System.Linq; public class Program { public static void Main() { var…
-
1
votes2
answers70
viewsA: Show DIVS from selected category only
If I understand Well, I believe the Code below will help <html> <script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="…
-
0
votes2
answers280
viewsA: Jquery mask does not work within another Jquery script
Opa Rogerio! found some errors in the Code. o First of them eh that we can only have one ID per page, the ideal is to use a Class for this case. Another problem is that you are tying the keyboard…