Questions tagged as 'javascript'

0
answers

how to get the list of videos from a user on youtube

Hello I was trying to get the list of my videos not to do it manually. I read in an article they did on a simple way to do it. the thread is:    link I start the code but it shows nothing. The code: <html> <script> // G...
asked by 12.02.2018 / 02:40
0
answers

What does this WARN mean in the Node terminal?

Hello, I am uploading libraries to my project with "npm" and the following message is continuously displayed:    *** C: \ Users \ victor \ Desktop \ michaelgram & nt; npm install --save page npm WARN [email protected] No repository field. npm...
asked by 03.05.2018 / 18:13
0
answers

I can not save name when registering a user - Firebase and javascript

function crear() { var auth = firebase.auth(); nombre = $("#NombrePerfil").val(); correo1 = $("#correo1").val(); password1 = $("#clave1").val(); password2 = $("#clave2").val(); if (password1 == password2) { password =...
asked by 28.04.2018 / 20:15
0
answers

retrieve date from an ajax call in struts

I have to recover from java a date that is passed as a parameter in the url of the ajax call. The parameter in the URL from the ajax call gets it right, the problem comes from the java part that is null. if(id=='A'){ tipoFactur...
asked by 24.01.2018 / 10:33
3
answers

Jquery how to put in span everything the user types in text area

The problem that I face is that I could achieve what I need but showing it in the console, but my goal is that as it appears in the console, each word is assigned a span, there is some code in jquery that makes it possible , thank you very much...
asked by 07.11.2017 / 17:56
1
answer

JavaScript / Jquery error "TypeError: Property 'handleEvent' is not callable." What could it be?

Well today I was practicing and I found this Error reflected in the Console:    TypeError: Property 'handleEvent' is not callable. I would like to know why it happens, I will leave my practice form here to see if they can help me solve it...
asked by 25.01.2018 / 20:20
0
answers

press a button in imacros using javascript if its id is different

I was trying to do a little javascript to press a button that changes id, that is to say every time I reload the page the button changes from id but it never presses me. The code is as follows: var string = ''; var letters = ['a','b','c','d','...
asked by 15.11.2017 / 10:35
0
answers

How to use CryptoJs in angular 4

Good morning, I'm trying to implement CryptoJs in angle 4 but when I run the app it gives me the following error: import { Component } from '@angular/core'; import * as CryptoJS from 'crypto-js'; @Component({ selector: 'home', templ...
asked by 08.11.2017 / 15:41
0
answers

How to implement ajax with jquery validation plugin

This is the code that I am using alctualmentememando an error of Can not post to be sent someone knows what I am doing wrong or what is the correct form. I also want that after sending the data it shows me the thank you div and the h1 of thank...
asked by 27.03.2018 / 20:12
0
answers

Send Json with Ajax to Spring mvc

I can not send a json to a Spring MVC controller, I do not have any errors, but the controller does not print anything, I do not know what I'm failing. Javascript Ajax: var search = { "pName" : "bhanu", "lName" : "prasad" } var...
asked by 27.03.2018 / 19:48