Questions tagged as 'jquery'

2
answers

Calculation of the days of a month [closed]

I'm setting up a calendar and I'm going to make a calendar. I need to know how many days in the month and what day of the week is the 1st of each month. How to do this with PHP?     
asked by 12.08.2014 / 23:01
2
answers

Jquery .click or function [closed]

As I get more and more accustomed, I've been left out. <input type=button onclick="TESTE()"> <script> function TESTE(){ ... } To use the method in jquery <input type=button id="teste"> <script> $("#teste").click(f...
asked by 30.04.2014 / 20:50
2
answers

Alternate keyboard no input text [duplicate]

How to make a key work only in text-type fields when pressed? Example: $(":text").keydown(function(e) { e.stopPropagation(); }); here is missing the textarea: if (e.keyCode == 70 && $(e.target).attr('type') != 'text' &...
asked by 25.04.2014 / 02:53
1
answer

Divide monetary value per checked checkbox

I have a question about how to do this, checkbox or just one, enter a value in the "Total" input and show the result split, without refresh on the page, tried with .on change, but I can not get the checkded amount and value and show the split va...
asked by 01.03.2016 / 01:09
1
answer

Pass PHP value to the SimpleModal Form via GET

I'm using Eric Martin's SimpleModal Contact Form , but I'm having a hard time passing a variable to the form via GET. I wanted the index.php , I could send the variable $palestra_titulo , and that it was used in the Form i...
asked by 15.05.2014 / 17:31
2
answers

Zooming the site with jQuery

Is there a plugin that leaves the site the size of the screen? When a site opens at x resolution, it stays that size. For example, when I open the site on TV it gets small and I want it to grow in size. I gave an example of what it wou...
asked by 11.04.2014 / 20:11
1
answer

Resizable does not work in dynamic image

I have a tool that when the user sends any image the resizable function does not work, unlike the static image that is already in the site. I designed my question online, at the following link: link If you have an alternative usin...
asked by 27.04.2014 / 21:00
1
answer

HighCharts - Display tooltip in column equal to 0 or no value

Hello At one time I implemented Highcharts on the Framework in my company, and I can say that we are very satisfied with the same. But we have a problem that we do not know how to solve. In column charts, when a column has its value equal...
asked by 10.04.2014 / 19:37
1
answer

jquery .animate () does not animate my div

Well, I'm trying to do something supposedly basic using Jquery's .animate (), but I can not get it to animate the div, even by correctly selecting the html element with the "$ ()". Here's JSFIDDLE: link . I was following what's on the W3S websi...
asked by 14.02.2016 / 00:17
1
answer

Call function by OnClick passing parameters

I'm trying to call a function by clicking on a link, where a parameter is passed that will be used in an Ajax request. This request will return results that will be added to a div. The link code for the function call is as follows: <a...
asked by 26.12.2016 / 14:29