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,
});...
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...
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...
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...
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(){...
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...
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: ' +...
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...
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=...
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...