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...
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...
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...
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?
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?
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 ?
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"...
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...
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...