Posts by Alef Felix • 51 points
5 posts
-
0
votes3
answers4397
viewsA: html file does not identify CSS
Opa so you can load a css file from a directory on Node.js you first need to determine the static folder where these files are, what you can do is the following: Create a folder at the root of the…
-
1
votes2
answers13159
viewsA: Error: Access to Xmlhttprequest at 'file://...' from origin 'null' has been blocked by CORS policy
Opa what may be happening is that your application is giving conflict with HTTPS, what you can do is install the npm install http-server module and run the following command on your terminal to open…
-
1
votes3
answers82
viewsA: Problem recognizing this.id in jQuery
To get an id of a specific element through jQuery has a slightly better approach instead of using Event, what you do is take it through the command $(this).attr('id'); So it will take the clicked…
-
0
votes2
answers611
viewsA: Ajax does not return the date of requests
In order for you to receive the date in json it is necessary that you return a JSON from PHP for it to arrive in your Ajax Success method, so much so that if you run the ajax error function, you…
-
0
votes0
answers96
viewsQ: Ajax does not return callback on ios
I have the following problem, when I try to run my code it arrive in beforeSend but it does not return me if an error happened or was executed successfully, someone could help me with this. On PC…