Questions tagged as 'jquery'

2
answers

How to draw bar of a modal

Hello, how do I get this gray bar on top of the modal? $(function(){vardialog,form,dialog=$("#painel_fazer_upload" ).dialog ({ autoOpen: false, height: 520, width: 500, modal: true, });...
asked by 22.05.2015 / 20:31
2
answers

Select chained using only HTML and jQuery

Hello, Community! I have two selects in HTML one with the regions of Brazil and another with states. How do I chain them without using a template (PHP, Java, C # etc), only with HTML (the selects) and jQuery? //select regiao/estado en...
asked by 01.01.2016 / 23:51
1
answer

Like and Share Button Counter Custom for Social Networks Twitter and Facebook

How to get the total number of likes and shares of a URL on the Twitter and Facebook platforms? There are a number of sites on the Internet where you usually see custom Facebook and Twitter custom buttons, with a custom count...
asked by 03.07.2015 / 10:04
1
answer

Get only styles declared in CSS for an element

I am trying to make a CSS converter for inline styles using only client-side technologies. Searching even found something, in the case is library (jquery.inlineStyler) and this is implementation , but it does not answer me how I would l...
asked by 08.06.2015 / 21:59
1
answer

JQuery how to monitor stock exchange?

I have a radio button: <input type="radio" value="1" id="monitor" style="display:none;"> Here I change the value of it, and would like an alarm to be triggered: $(function(){ $("#umItemQualquer").click(function(){...
asked by 08.06.2015 / 04:06
3
answers

Add new field and leave it empty

I'm using a jQuery (clone) to copy a line and add it to the element, but if I have this line filled, it comes exactly like this! I need that when cloning this line, the forms come empty. HTML <div class="container_linhas"> <d...
asked by 01.10.2015 / 23:18
1
answer

get the date in the fullcalendar select event

I would like to know how to get the value of data when doing the select of a day in fullcalendar select: function(start, end, allDay) { start = $.fullCalendar.formatDate(start, 'yyyy-MM-dd'); alert('Valor da data: ' +...
asked by 11.04.2015 / 20:57
1
answer

When you click on the smaller div, open the

I have the following layout. The larger square shows one of the smaller squares, only in larger size. That is, if I click on the second smaller square, it has to show in the larger square. Is there any plugin for this? I need to be man...
asked by 12.04.2015 / 03:12
4
answers

addClass and removeClass with Jquery

I'm trying to create a menu where the one div gets a class if it's clicked, however I'd like to remove the class from the last link clicked on the menu. <div id="bolinha-dentro"></div><a href="">Meu link</a> <div id=...
asked by 31.07.2015 / 14:20
1
answer

Handle data returned from ajax request with JQuery

My request: $.post( "http://painel.thomerson.com.br/imagens/escolher-template", $(this).serialize(), function(data){ $("#Resultado").html(data); } ); What is happening is that by inserting the contents...
asked by 26.01.2015 / 23:13