In my code, I have a calendar where the user selects the period that he wants to analyze. The code is this:
<input type="text" name="daterange" value="01/01/2012 - 20/04/2018" />
<script type="text/javascript">
$(function() {
$('in...
I'm working with JQuery TABs, after adding the proper scripts links and starting the tab, the use to open PHP page in the tabs is very simple
<div id="tabs">
<ul class="nav nav-tabs">
<li><a data-to...
I tried the following but it does not work
<form action="add.php" method="POST" name="form1">
<div class="w3-section">
<label>Nome do funcionario</label>
<input class="w3-input w3-border...
I'm starting in the area of web programming and I came across a problem during my studies:
I want to do a simple animation using the js code below:
animeScroll.js
// Debounce do Lodash
const debounce = function(func, wait, immediate) {...
I wanted to click on a pagination page, when entering the link the corresponding number would be activated:
$('.page-button').on('click', function(){
$('.page-button').removeClass('active');
$(this).addClass('active');...
I do not know if I'm doing this correctly, but I need to create a dropdownlist in my navbar to show a list of branches that will come from the database. The problem is that when I insert it, it is misaligned vertically. I believe it is because o...
I use 3 radio buttons to select the input voltage of an equipment (110V, 220V or Automatic).
If I put only 2 radio buttons, they both function normally. If I put 3, the first one does not work correctly. He apparently does not pass the value he...
I have a page where this has an iframe for an application, the page first loads the iframe, when the iframe application loads, the whole page where the iframe automatically scrolls down, I do not know how to disable it.
Hello, how do I set the timepicker to current time or 01:00?
$('.timepicker').timepicker({
showInputs: false,
defaultTime: '',
minuteStep: 1,
disableFocus: true,
template: 'dropdown',
showMeridia...
I'm developing a system with Asp.Net Mvc using the bootstrap, but I want to give a different "face" to my login screen, I created a css but I would like to make it responsive, does anyone know how to do this? follow the CSS below: more specifica...