We have a case of multiple projects with the same components and we would like to be able to import them as a library or modules, we have found several ways like npm / bit.
Do you have experience in this and any recommendations?
Is there a way to stop the onblur events until the whole page loads?
The events are inside a normal html form and look like this
<input disabled type="text" name="art_siglas" id="art_siglas" onblur="Guardar()" placeholder="Siglas para et...
I have a list of sharepoint (office365) created with 16 fields, and with many records. I need to know how I could immobilize the header so that when I scroll down it stays fixed and can be viewed from any register?
I tried to create Json code...
function bimestre(event) {
var targe = event.target || event.srcElement;
var o = targe.getAttribute('value')
o = parseInt(o);
console.log(typeof(o));
// alert(event.target.innerHTML);
va...
Hello friends, sorry for my ignorance in javascript but while I was reading I came across this standard and I saw that they were different, could you explain me?
What is your correct difference?
I would not like to be uninformed
I have a JSON file which is a "database", since I still do not have knowledge of that type.
{
"words": [
{
"id": 1,
"word": "Silla",
"principal": "http://pngimg.com/uploads/chair/chair_PNG6860.png",
"engword": "Ch...
I am creating a task app with jQuery, to practice nothing else but I have a problem when it comes to eliminating a task, here's the code I hope you can help me
The jQuery code is:
$(".agregarBtn").click(function(){
var texto = $(".agre...
Very good, I have a form in which to accept, I have to pass the content of 5 fields to a function, my question is: Is there any way a little more efficient to pass 5 variables to a function? Maybe Json? Thank you very much