I am making an Ajax call and thus returning new entries to a table. So far so good, but I want to make a .prepend() by adding a "Remove" button on each element in the list.
The problem is that this button is only added in the fi...
I have a Cross-Domain AJAX request that receives an XML. After a lot of work, I was able to download the XML but I do not know if I did it correctly because it never arrives at success . Here is the requisition code:
function refreshPage() {...
I have the following code snippet:
var Tannerie = {
init : function(){
$('#prev').mouseover(Tannerie.prevClick);
$('#next').mouseover(Tannerie.nextClick);
},
prevClick : function(){
$(this).click();...
I am making an ajax request like this:
$.ajax({
type : 'POST',
url : apiURL + '/play',
dataType : "json",
data : {
against : "ANYBODY"
},
success : function(data, textStatus, jqXHR) {
// ...
},
e...
I need help with css , and js .
I need a js that makes when I click the down button, or up, scroll the scroll of a div to a certain size:
Sample link: link
I visited this site and liked the way the content moves, when it is clicked on More Articles or Hide List , I'd like to implement a site I'm developing. I'm having difficulty finding the plugin that does this, I inspected the page and saw t...
a doubt: I have a table and in it two columns, which are: CNPJ and Razão Social . Well, I need to do the following: When I click on the CNPJ column, for example, I should pass the value of CNPJ that is being clicked an...
I'm setting some similar functions for different pages on a website. Therefore, these functions are in the same file. When the JS file is loaded the $(function() { /*function1*/ }); and $(function() { /*function2*/ }); functions ar...
I have an HTML code like this:
<div class="conteudoFrente">
<div id="draggable">
<div class="draggableFrase">
</div>
</div>
</div>
The div with the "contentFro...
I'm having trouble getting the id passed by the date of the ajax (jquery), what happens is that using $_POST['id'] or filter_input(INPUT_POST,'id') is empty
follow ajax:
$.ajax({
type:"POST",
url: "cursos/area/",...