Questions tagged as 'javascript'

1
answer

Load content from another page

I have a problem with an index.html page that loads content from another page using javascript. The issue is that in this second page single-project.html I have inserted a slider (bxslider) and when executing this page individually it works corr...
asked by 19.08.2016 / 02:29
1
answer

What is the meaning of static get in Javascript?

An expression in Javascript has left me a bit confused: static get is() { return "custom-element"; } What is the operation of a static get in Javascript? I guess the static has a function similar to what is done in Java or C ++.     
asked by 19.03.2017 / 17:30
1
answer

Get local IP jquery

I found this code that returns the IP or IP's of the machine. function getIPs(callback){ var ip_dups = {}; //compatibility for firefox and chrome var RTCPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnect...
asked by 03.12.2016 / 18:46
1
answer

Clear the cache depending on the view with $ ionicHistory.clearCache ()

is there a way to eliminate the cache of the view you want ?, for example in javascript I want to delete the cache of the next view I want, to actulize the information of all products, but in another view returns to the view products and at that...
asked by 09.12.2016 / 22:25
3
answers

I can not access an item with an ID that contains% with JQuery

I am creating an input element dynamically to introduce a title to an image that the user uploads. When I create the element I assign it as id title + the name of the uploaded image. To remove the spaces and accents that may have the name of...
asked by 14.07.2017 / 11:20
1
answer

DobleClick to Edit

I'm doing an HTML table which has the fields of: No., Name, Area, Position and Email, the only thing I need is to edit the rows that were already entered in the table, to edit them I want to doubleclick in the row , but the problem is that I edi...
asked by 19.07.2017 / 19:11
1
answer

ES6 undefined $ {this.name}

Friends I'm trying the following class Player{ //todo lo que resiba este const será la clase persona constructor(nombre,edad){ nombre == this.nombre; edad == this.edad; } mA(){ console.log('la edad es...
asked by 30.12.2018 / 03:56
1
answer

Vue data iteration

I'm iterating some data with a computed property in a v-for use axios to obtain data from an external api you will see the code <table class="table"> <thead>...
asked by 31.12.2018 / 02:31
1
answer

Determine form to do other things first and then resume it and send it to CRM

I have a problem since yesterday with the following form with submit button <form id="form_contactanos" action='https://crm.zoho.com/crm/WebToLeadForm' name=WebToLeads54017000020400005 method='POST' onSubmit='javascript:document.charset="UT...
asked by 12.12.2018 / 18:39
1
answer

Integer to Date - Angular

I have a question, in PHP I can convert a whole number to date, in the following way: echo date("Y-m-d H:i",'1544102153'); and return: 2018-12-06 14:15 How can I do this in Angular? I've tried with: {{'1544102153' | date:'dd/MM/yyyy(...
asked by 12.12.2018 / 13:05