Questions tagged as 'jquery'

2
answers

Animation with JavaScript / jQuery [closed]

I have this html: Iwouldlikethefollowingtoappearwhentheuserdrags: Whenyoudragagain,disappear...HowcouldIdothiswithJavaScript/jQuery?Followthecode:<divstyle="width: 100%; overflow-x: hidden;"> <div class="item-total"&...
asked by 14.11.2018 / 16:52
2
answers

Is it possible to have dynamic rules with jquery validation?

I have three fields, two inputs text and between them a select . If one of the first two is filled in the other becomes mandatory. The problem is that when a single value, in the case the last option, of the select is filled all thr...
asked by 24.02.2014 / 18:16
2
answers

Panel open closed JS

I have the following panel: $(document).on('click', '.panel-heading', function(e){ var $this = $(this); if(!$this.hasClass('panel-collapsed')) { $this.parents('.panel').find('.panel-body').slideUp(); $this.addClass('pan...
asked by 30.04.2015 / 08:28
1
answer

Progress bar for slide jcarousel

// Carousel $(function(){ $(".peq-carousel").jCarouselLite({ bntNext: '.next', bntPrev: '.prev', visible: 7, auto: 3000, speed: 800, vertical: true }); }); // Barra Progresso function startbar(){ var barr = document...
asked by 22.02.2015 / 00:30
2
answers

Add class to a DataTable

I'm making changes to a pagina.aspx of a system, however many things are generated through language functions. <table id="ctl19_tableAreas" style="height:100%;width:100%"> <tbody> <tr style="height:249...
asked by 24.11.2015 / 05:58
3
answers

Page does submit even with error in validation

Hello, I'm having problem with a page because it's doing submit even when validation returns false . $("#botao1").click(function() { $.ajax({ url : 'adicionadaIdeia', type : 'POST', asy...
asked by 23.11.2015 / 20:39
1
answer

DIV TEXT fixed only in the space of the DIV FATHER

Hello, I would like to do the following. <div class="pai"> <div class="form"></div> <div class="text"></div> </div> I have a DAD and inside it there are two div's side by side. The heigh...
asked by 13.12.2016 / 08:04
1
answer

Problem with autocomplete jquery-ui via Ajax / PHP

Talk to the people, all good! I have a webserver application that does not have a webserver. I have a webserver application that I have a webserver on. I have a webserver application that has a webservice. are correct for the source to handle th...
asked by 11.07.2016 / 03:56
1
answer

Doubt on behavior $ .post and $ .ajax

I've always been accustomed to using $.ajax() for all my type requests, and this works perfectly. An example that is even occurring now is the following: $.ajax({ type: "POST", url: "XmlTree.aspx/GetChildren", d...
asked by 28.08.2017 / 20:16
2
answers

Dynamically refresh the php session with jQuery

Well, I have the function below that, with JQuery, I update the display values of the cart values. Everything works: function add(_quant, _preco, _total, _estoque) { quantidade = parseInt($("#"+_quant).val()); estoque = parseI...
asked by 02.06.2016 / 21:25