Posts by Marcelo Batista • 1,617 points
57 posts
-
0
votes2
answers102
viewsA: Position element using another element reference
$(".taskAtiv ").on("click", function (e) { $(this).toggleClass("glyphicon-chevron-down").toggleClass("glyphicon-chevron-up"); var referenceElement = $(".taskCheckListHeader"); var positionElement =…
-
1
votes2
answers102
viewsQ: Position element using another element reference
positions an element using the reference of the position of the div box, the element is on display None and when it receives the click event it appears on the screen, however it should appear below…
-
2
votes1
answer79
viewsQ: Toggle icon with Jquery
<span class="col-sm-1 text-center"> <i class="taskIcon glyphicon glyphicon-chevron-down" data-toggle="collapse" data-parent="#accordion" href="#collapse1"></i> </span>…
jqueryasked Marcelo Batista 1,617 -
1
votes1
answer91
viewsQ: Collapse bootstrap opens all tabs at once
<div class="taskList"> <div class="taskToDo clearfix data-toggle="collapse"> <span class="col-sm-8 taskTitle"> <span class="checkTask"><i class="fa fa-check-circle-o"…
-
0
votes1
answer40
viewsQ: change the element when it reaches the top
I’m trying to make this code to change the element when it reaches the top, the element will stay fixed until the next one reaches the top. HTML <p> elemento A </p> <p> elemento B…
-
2
votes1
answer206
viewsQ: I’m having trouble loading bootstrap-js
import Vue from 'vue' import App from './App.vue' import BootstrapVue from 'bootstrap-vue' import 'bootstrap/dist/css/bootstrap.css' import 'bootstrap-vue/dist/bootstrap- vue.css'…
-
2
votes5
answers8188
viewsA: Best factor calculation algorithm
public class calculeFatorial{ public static void main(String[] args) { int fatorial = 1; for (int i = 1;i < 11 ; i ++ ) { fatorial *= i; …