Good afternoon,
Does anyone know why I miss this error ?:
"coin.render is not a function at window.onload"
The code on my website is the following:
var ImgMoneda = new Image();
ImgMoneda.src = "coinAnimation.png"...
I have a problem with my application and I do not know what the reason is. He tells me the error of the title.
I can not modify anything in CSS or HTML. That is to say that the error is in the .js but I do not know how to see it ..
do...
What I want to do is a FadeIn with jQuery but I do not get it:
My JS:
function fadein() {
$("#result").fadeIn(1000);
$("#svgresult").fadeIn(1000);
}
<button id="calculate" type="button" onclick="fade...
What I want to know is when the user reaches a certain point on my screen in order to make an animation effect, in this case when the user reaches my footer I would like it to appear in a colorful way and once that went up outside disappearing....
My code is:
var files = fs.readdirSync('./archivos/'); //itera todos los archivos
for (var a in files) {
if (fs.statSync('./archivos/'+files[a]).isFile()){
var nombreFile=files[a];...
the read file function does not return anything, but if it shows by console
function leer(archivo){
fs.readFile('./archivos/'+archivo, 'utf8',
function(err, data) {
return data;
}
);
};
when I us...
I am doing a project with Php but I need to use Node.js to add more functionalities to the project, but this is hosted on a shared server, and I had a question. Can Node.js be installed on a shared server? and if this is not how I can work using...
I have a variable like the following in a controller of angular :
$scope.dato = "<h1>MI TITULO</h1>";
I want it to be shown in html , but rendered ... something like the following:
MY TITLE
In the view I put...