Questions tagged as 'jquery'

6
answers

How can I not allow numbers in a textbox?

Well folks, I'm trying to validate but have not yet succeeded. I want to do a function that does not let me enter numbers in a textbox . Here's an example of how I do it today. $(document).ready(function () { $('#nome_contacto')....
asked by 05.01.2016 / 00:36
3
answers

Problem with click on input

I'm developing a hybrid application for mobile, using HTML5 and JS. I have the following problem: when I click, for example, in Nickname, it opens the Sex part. However, it is very strange behavior, it only happens when it is the first time the...
asked by 15.10.2015 / 14:47
1
answer

How to bring the total of each column in the FooterRow of a jqGrid?

I'm using the jqGrid (4.6.0) property with jQuery (1.11.0) , but I was only able to generate the total per column and not That's what I want, I'd like the grand total. The jqGrid contains the grouping property that contains the grou...
asked by 11.03.2014 / 19:37
4
answers

How to force the opening of a link in another tab and not window?

I have a button (anchor) that needs to be 'hidden', or no text at all. His structure is this: <a class="testeimprimir" href="javascript:teste1();" target="_blank">TESTE</a> The function is this: function teste1() { window....
asked by 07.11.2014 / 12:47
5
answers

Using jQuery, how to select elements with two CSS classes

I have a div that uses two CSS classes. Here's the HTML: <div class="box1"></div> <div class="box1 destaque"></div> <div class="box2"></div> <div class="box2 destaque"></div> <div class="box3"...
asked by 11.02.2014 / 17:03
7
answers

Hide input value

I need to hide / remove the value of my input, but I'm not getting anywhere, where am I going? Thank you very much HTML: <div class="caixa-pesquisa"> <div class="caixa-pesquisa-input"> <input type="text" class="pesqu...
asked by 14.02.2014 / 19:28
3
answers

How to keep the scroll of the element always in the bottom

Consider the following example I made here: $("#add").click(function() { $("#wrap ul").append('<li class="new">Teste</li>'); $("li.new").slideDown('slow', 'easeOutBounce'); }); link How can you fix it by clicking on...
asked by 23.02.2014 / 19:55
4
answers

How do I enable a button only when all inputs are filled?

I have a <button> that is rendered as disabled (disabled) when the page is initially loaded. I would like it to be enabled (enabled) when all data is filled in <input> 's. How could I do this using jQue...
asked by 21.02.2014 / 12:41
1
answer

Mount tree - JSTREE

I was reading about JSTree and saw that it understands a Json that can be placed in the tree without recursion, ie, it needs the default id,parent,text according to documentation . I created a self referenced table called...
asked by 10.12.2014 / 01:34
3
answers

Navigate horizontal scroll by pressing tab

I'm using the datatables plugin. I built a table where the first four columns are fixed and the others (which will be generated "dynamically") have input for quantity typing. My intention is that when the user presses tab to g...
asked by 16.06.2015 / 16:29