Hello, I'm trying to return information from a .php file in a specific div using jQuery. The situation is as follows: The information will be retuned to a div with id="bkpLoja", but this div is in a section with query in the database and each re...
Can you change the direction of the toggle () effect of JQuery? For example, I made a button that when clicking, it shows and closes a div
$('.botao').click(function(){
$('.div').toggle(700);
});
Only, that he kind of has a...
I created a function to return true or false when ajax. At the beginning of the function I declare a variable "r" to receive true in case of success or false in case of failure, but the variable does not have its va...
I'm building a Java application that should show on-screen notifications in real time.
A teacher requests a reservation;
Reservation data is stored in a json object (or in a request table);
At the same time, a notification is displayed o...
I'm looping an object with JQuery each and I'm not succeeding.
Object generated below via PHP:
{"status":"hasP",
"flag":null,
"qtProcess":null,
"code": null,
"message": [{"id":"1","email":"[email protected]"},{"id":"2","email":"teste1@h...
I have the following HTML code:
<div id="geral">
<p class="texto_grande_titulo">...</p>
...
</div>
In CSS:
div#geral{ background-image:url(../imagens/borda.png);
background-repeat:n...
I would like, for example, that by choosing the '10 people 'option in select' Size ', I could hide specific options in the selects' Template ',' Fillings ',' Options to Drain 'and' / p>
Example:
<div class="form-group">
<span cl...
I have a form that the user can add several languages that knows how to speak, this form consists of a dropdown and a button to add the respective language.
At the moment I click the add button it adds me new object to an array, as I show in the...
I'm trying to turn my clicks into functions, since the code is being repeated in
link
This is the original code:
$("#div1").click(function() {
$("#widget-body1").slideToggle("slow");
});
$("#toggle1").click(function() {
$("#widget...