Hello, I am a beginner in jQuery and I am trying to configure the navbar of my site so that when it scrolls down, the navbar is hidden and there is only one button to open the navbar, and when you scroll up to the maximum that button invisible. I...
I'm having a problem, I have the script below that every time the user uses the browser to go back to the main page this animation script executes.
I would like to know if there is anything I can do to run it only on the first user access,...
I have an auto complete system and wanted the options to appear lower than the line where the user is typing, such as code editors such as dreamweaver .
Auto Complete - Jquery:
$(function() {
var availableTags = [
"<a></a>"...
I have a index.php that uses the following JQuery and CSS :
<script src="http://code.jquery.com/jquery-1.12.1.min.js"></script><scriptsrc="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js">&l...
I made a page index that calls another page within div . But I came across a simple problem: the page appears inside div of page index , where I have a search field, except that clicking the button or a enter in the f...
It can be in jquery or angularjs help.
I have the following picklist (handmade):
<divclass="form group">
<label class="control-label col-md-3">Selecionar Empresas:</label>
<select id="select1" name="sel...
Good people, I have an index.php that calls my other pages as requested
Ex:
index.php:
<a href="home.php">Home</a>
if( isset($_GET['pagina']) ){
include_once 'paginas/'.$_GET['pagina'];
}
It was just one example...
I was studying typeahead.js with bootstrap 3 , and I'm trying to do a auto-complete that makes a request on the server to bring the list options.
This is the plugin I'm using:
GitHub Bootstrap 3 Typeahead
This is the funct...
Well, I'm having trouble trying to get the value of input of type file via jQuery. Basically, I selected the input to assign it a .click() event, after that I try to get the input value, but in reality not even...
Personal this is my code in PHP
$sql = mysql_query("SELECT * FROM noty");
while($linha = mysql_fetch_array($sql)){
$notificacao = $linha["notificacao"];
echo"<div class='adm_edit'>".$notificacao."
<input type='text' cla...