Posts by Maujor • 486 points
9 posts
-
0
votes1
answer92
viewsA: Pick up the Combobox value automatically with Jquery via POST
The jQuery script that returns the value of an element option select when choosing one of them is the following: $('#filtro').on('change', function(){ let quantidade = $(this).val();…
-
1
votes2
answers44
viewsA: Selector lt() does not work
Use the jQuery method lt() combined with the method gt(). In the following example the function will be executed for clicks on div 03 to 06 inclusive (Javascript count starts at ZERO). It is…
-
1
votes2
answers160
viewsA: Insert Javascript line
Here is a "more elegant" solution as suggested by @Giuliana Bezerra. $("button").click(function() { $('#selectEmpresa').change(function(){ $('#msg').html(''); }); var vIdEmpresa = $('#selectEmpresa…
javascriptanswered Maujor 486 -
2
votes1
answer69
viewsA: Put link inside the button
Example of a button created with the widget A using a Bootstrap CSS adaptation. Customize as you wish by changing CSS statements: .btn { color: #fff; cursor: pointer; text-decoration: none;…
-
4
votes1
answer135
viewsA: how to position a triangle created with css?
Do the following: 1-) In the HTML markup put the <div class="triangulo"></div> shortly after the tag closing of SVG </svg>, as shown below: <div class="col-12 alinhaColuna">…
-
5
votes3
answers1020
viewsA: Partially paint border in CSS
I created an HTML + CSS + Javascript version to animate the border of a BOX by clicks. The version is: responsive valid for any BOX dimensions valid for number of clicks >= 4 If you prefer you…
-
2
votes2
answers118
viewsA: Versions of Jquery
as CSS Here’s the code I used. Adjust the links to images and scripts and (obvious) link to the CSS of the framework and plugin in the section head page. <body> <div class="row"> <div…
-
18
votes2
answers3404
viewsA: Tag hgroup is unusable?
After much discussion the element <hgroup> was removed HTML5.…
-
1
votes2
answers118
viewsA: Versions of Jquery
For sliders the Foundation has the native Orbit plugin that has been put into disuse and will be taken from version 6 of the framework, but works until the current version 5. Orbit comes out because…