Hola a todos, quiero mandar el contenido de un div por javascript y ajax y me manda este error
"The requested URL's length exceeds the capacity limit for this server."
mi codigo es el siguiente
function prev() {
var variable = contenido.innerHTML;
//alert(variable);
var parametros = {
"html" : variable
};
$.ajax({
data: parametros,
url: 'intento.php',
type: 'post',
beforeSend: function () {
},
success: function (response) {
alert("ok"+response);
document.location.href = "intento.php?parametro1=" + variable
}
});
}
de que manera puedo mandar el contenido del div? ya que ese contenido lo voy a ocupar para crear un pdf
Gracias