Questions tagged as 'jquery'

1
answer

Mouseover effect td with jquery or css

How can I make when I hover over my td , display the edit icon in it? Note: My code does not work: jQuery Event: $(".editableSpan").mouseover(function(){ $("#tdEditable").append("<span id='widthSource'></span><sp...
asked by 08.10.2015 / 21:48
1
answer

Datepicker is shown behind the modal bootstrap

I have a bootstrap modal: <!-- Modal content--> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal">&times;</button> <h4 class="modal-ti...
asked by 15.03.2016 / 11:21
1
answer

Ajax call webmethod with friendly URL

I do not know if it's a frequent question, or something that is not possible. During my studies I realized that it was possible to do this with PHP, but I did not see anything with ASP.NET Web Forms. I made a URL from the same page: routes...
asked by 03.03.2016 / 14:50
1
answer

5th step using jquery.smartWizard.js

I have the following form menu using jquery.smartWizard.js Ineedtoenterthe5thstepandIcannot.HowdoIenter?Belowisthecodeformyscreen.<!--Tabs--><divid="wizard_verticle" class="form_wizard wizard_verticle"> <ul class="list-uns...
asked by 20.03.2017 / 21:22
2
answers

Function load () jQuery + Twig

I'm developing a system using PHP , with the idea of having only one page. As? (I do not know if it is the best solution, I believe it is not), I developed a side menu that is fixed and the contents to be changed would be in the center of...
asked by 27.10.2015 / 22:33
1
answer

JQuery masked input with regex?

I put the following script to put only month and year in the input, and set the regex to accept typing from 1 to 12 for months: $.mask.definitions['X'] = "^([0-1]|1[0-2])$"; jQuery(function($){ $("#masked...
asked by 04.11.2015 / 17:07
1
answer

Avoid button click effect without affecting other links

As I get in jQuery, avoid the click effect of a link that has href="#" without affecting the default behavior of other links. Example: I have 3 links <a href="#">Link 1</a> <a href="http://www.meusite.com.br/">Link 2<...
asked by 09.11.2015 / 14:26
4
answers

Access JSON with multiple objects in JS

I have the following JSON [ { "id": 1, "nome": "Matheus Almeida Siccenna", "cpf": null, "matricula": { "id": 555, "empresa": 1, "unidade": 0, "descricaoUnidade": null, "curso": 1, "descric...
asked by 15.12.2015 / 18:27
1
answer

Image loses effect of CamanJS when manipulating canvas

I own a canvas, in which I manipulate images drawn on it with the CamanJS plugin and works perfectly. However, if I manipulate the canvas manually (without the aid of the plugin) the image loses the effect. For example, I add a filter (Vintage...
asked by 04.01.2016 / 17:57
1
answer

Put header in ajax get method

Good afternoon, I have the following piece of code: function getData(){ var url = "http://teste.com"; var data = ""; $.get(url, function(response){ serverResponse = response; for(i in response.content){...
asked by 15.12.2015 / 17:18