Questions tagged as 'javascript'

2
answers

Timepicker fields disappear when you select many dates

I'm creating an application with dynamic calendar creation. My application uses: Bootstrap 3 jQuery 1.11.0 jQuery-ui 1.10.3 jQuery Timepicker Addon 1.5.0 I create a calendar on the page (jQuery UI DatePicker), when the person sel...
asked by 26.11.2014 / 23:44
1
answer

Banner floating sidebar with Jquery with scroll

It's the following .. I have a floating banner on my blog that uses the following JS $(function(){ var jElement = $('.element'); $(window).scroll(function(){ if ( $(this).scrollTop() > 2000 ){ jElement.css({ 'posit...
asked by 28.02.2015 / 00:17
1
answer

Replace anchor by button in form with calculation by javascript

I have the following code: function calc(){ var form = document.getElementById("form"); var a = +form.a.value; var b = +form.b.value; var result = (a+b); form.result.value = result; } <form id="form"> A: <input...
asked by 25.12.2016 / 23:24
1
answer

How to get Unix Timestamp with JavaScript? [duplicate]

I've tried it here in some ways, but it seems to be wrong. An example of what I do: var data = new Date(); var timestamp = data.getTime() / 1000; Is this form correct?     
asked by 12.02.2017 / 02:54
4
answers

How do I display the OLX site's phone number?

In OLX, the advertiser number is partially visible and only after you click "View number", the full number is displayed. How do I do this in JavaScript?     
asked by 14.02.2017 / 16:44
4
answers

How to create an element and after a few set seconds remove it?

I need to create a% wc of warning like this: <p id="lblAviso">Salvo com sucesso</p> And remove it after 3 seconds. How to do this with jquery ? Need some label ?     
asked by 20.12.2013 / 17:33
5
answers

Invert array order

I have the array: var meuArray = [1, 2, 5, 7, 9, 4]; How to invert the order so it looks like this: [4, 9, 7, 5, 2, 1]     
asked by 08.12.2015 / 14:10
6
answers

How to validate date with AngularJS or jQuery?

I have a simple input that gets a date, how do I validate that date if it's true? For example:    31/02/2006 this does not exist   20/20/9999 this does not exist <input name="data" ui-mask="99/99/9999" kendo-date-picker name="t"...
asked by 08.10.2015 / 16:16
3
answers

Is it possible to create an information bank in JavaScript?

How can I create a simple database without using a server? I think the answer would be no, but check the following: I'm at work and I do not have access to databases or servers. This way I can work only on the local network and shared folde...
asked by 29.08.2014 / 18:41
3
answers

Help with Regex

Before asking I looked for several references, but I still do not understand much and managed to reach only to a certain extent. My goal is to validate that a specific string has 10 characters, the first two letters being uppercase, an...
asked by 27.01.2016 / 14:06