You will see I have three variables in my javascript function that is as follows:
function search_person_report(){
var User_persons = $("#email_person").val();
var names = $("#names").val();
var lastnames = $("#lastnames").val();
console.log(n...
This form is printed the amounts of times according to the results, but ajax only catches me the first form, the other forms are sent to me jumping to the other page.
Here is my code in Ajax. :)
<script language="javascript">// <...
I have a problem with a login form that I am doing with php and ajax.
The file in Php makes the query to the database so that the system knows if the user exists or not and to know if the data are correct:
//Datos de acceso
$email=strtolowe...
Greetings, I am creating a similar help window even on this same page, when you write a certain character and it is detected, a help window comes out and when you click on it it is placed inside the input (In the question form section , in the i...
I am currently sending Ajax % of%, but I need to send another data:
//data que necesito enviar
var ParamObjSend = {
"id" :$("#id").val(),
};
var array = [1,2,3,4];
$.ajax({
type: "POST",
url: "<?php print base_url()...
I know they always ask for code, but my question is basic. I also know that you can qualify it as "general knowledge" or "subjective response", but although it seems incredible, there are not many topics in Spanish that speak of the subject....
Is there a page to do this?
Where you can insert variable datos and copy the url in query ajax .
Or where data can be used as the data of ajax , which I do not know if it is possible.
With what purpose do I do this? t...
I am sending an http request from Angular to a PHP server and he replies this:
{
"data": null,
"status": -1,
"config": {
"method": "POST",
"transformRequest": [
null
],
"transformResponse": [
null
],
"...
Good afternoon, I have this bbdd with 7 tables. link
In the last one as we can see I have 4 PK because it is necessary to be able to have a document with the same name but with different versions.
The problem is:
How do I collect the dat...
I have the following Ajax, for the creation of a credit card, the script works perfectly in chrome but in IE it does not, it throws me an error InvalidAccessError , the site is on https.
$('.js-payment-form').on('submit', function...