I'm studying a bit of Ajax and testing your requests. My question is because of the return, it is coming back undefined.
This is the function:
function recarregar()
{
var jsonData = $.ajax({
url: "http://xxxxxxx/o/Ano/1235",...
Hello,
Within a form I have 4 combos
<select name="combo1" ><option value="combo1">Combo 1</option> </select>
<select name="combo2" ><option value="combo2">Combo 2</option> </select>
<select n...
Is it possible for jquery to understand the elements of an array value coming from the html? ps: I do not know if it is correct to say that in html there is an array.
I am creating with html and jquery a dynamic input that is having the v...
I have a View with dropDowlist that contains data that comes from the database and right down I put a buttom that when I click it will attach the selected dropdownlist item to a list, I made a code here but it is not appending if I putting defau...
In Jquery how to remove a CSS class when the mouse scroll goes up ?
I'm doing this way more is not working out
$('html, body').animate({scrollTop:0}, 800, function(){
$("#texto_posicao").removeClass("classecss");
});
This code is in jsfidle, that is, it shows the stylized select and select it with an input search.
<html>
<head>
<title>TESTE</title>
<script src="https://ajax.googlea...
I want to know how to do $('#div-search').on('load', ()=>{alert('carregou');});
I have a div where there are several $('#div-search').load(url) in the code.
however now I need to perform a series of validations after l...
When I click anywhere on the site, it does the scrolling animation for the #text_text_position.
How to make it so that only when you click on the element do the animation?
$(window).on("resize click",function(){
$('html, body').stop();...
I need to insert Tags into a site through the console. To be more specific, I want to add a TAG <iframe></iframe> .
I have already tried to use document.createElement('tag') , after that add the attributes of the tag b...