Most voted "jquery" questions
jQuery is a Javascript library focused primarily on DOM handling, event management and Ajax, seeking to free developers from directly dealing with a number of browser compatibility issues.
Learn more…11,371 questions
Sort by count of
-
0
votes0
answers160
viewsHow to create a multiple calendar, only with year and month?
I’m using Boostrap 4.1.1 and I’m trying to create a multiple calendar with only the month and year, same as the image below: At the moment my calendar is like this: CODE: <input type="text"…
-
0
votes2
answers1133
viewsHow to receive JSON data?
I want to recover a JSON code for HTML with jQuery. How can I do this? And how can I use CSS with JSON data? Here is the JSON code. { "quiz": { "sport": { "q1": { "question": "Which one is correct…
-
0
votes1
answer388
viewsImage animation up / down inside the div with Jquery
I have this code that makes an animation of images ascending infinitely, but it doesn’t happen this, as I could arrange for it to have the same effect of this site…
-
0
votes2
answers25
viewsDo not include class specifics in the table filter
Good afternoon, I have a jQuery filter implemented in a search bar, to filter Rows from an HTML table in Bootstrap. Needed, that some Rows that have the class . hiddenRow were not picked up by the…
-
0
votes0
answers141
viewsRequest problem $.ajax - Receive HTML table
I’m not getting to mount the modal getting a table using the $.ajax. Does anyone have any tips? I’m sending him this way: JS file: $("html").on('click', "#modalHorariosQuadra", function(){ var…
-
0
votes1
answer391
viewsWith email attachment via ASP.NET application
I already have a method in my controller that sends email. Now you need to contemplate attachments (all attachment types, jpg, pdf, doc...); string strPara = Request.Form["email"]; string strDe =…
-
0
votes0
answers81
viewsPDF opening in Modal gets lowercase
I have a website where I use a modal for opening PDF, and the same when it is opened is very small. Has anyone ever been through this? They’d know a way to fix it? CSS Modal code:…
-
0
votes2
answers745
viewsHow to upload an image using ajax and PHP?
I’m trying to make a upload of images with AJAX and PHP, but I get no success and do not find the error. My code is: $('.arquivo').change(function() { var fileName = $(this)[0].files[0].name; var…
-
0
votes1
answer500
viewsClear input - ng-model - change
I own a md-select where according to the selected, I create some div’s using ng-if. These div’s created have in 02 of them equal models (ng-model). Therefore, when you change Md-select to another…
-
0
votes0
answers163
viewsReact-materialize input is not working
I am facing the following problem, I created a site using only materialize and then I used the React library in the template, but now some fields are not working and one of them is the input I had…
-
0
votes3
answers2954
viewsMake text bold with php
Good evening, I have a big problem, is the following, I am with a textarea form to send texts to the database, and what I want to do is take a snippet or a word that is contained between certain…
-
0
votes1
answer491
viewsCors error accessing Api
I am trying to access a wikipedia service with JQ, but in returning Cors error, could someone help me with a code to access this service correctly. Url:…
-
0
votes1
answer49
viewsIf inside the Loop does not work properly
Good evening. I have the following function: function verificaOnOff(){ for(var i in tbModulos){ var mod = tbModulos[i]; $.get('http://'+ mod.ip +'/rele', function(data) { if (data == '1') {…
-
0
votes1
answer24
viewsJQUERY/JS code explanation
I needed to make an upload system, which when selecting the image, a preview would be shown in a box before it was sent. I saw a code here at Stackoverflow and I tried to adapt it. I would like to…
-
0
votes0
answers30
viewsJSON verification in JQUERY
I have an ajax chat on my website. However, sometimes messages are duplicated for reasons not relevant. Therefore, I would like to check if the messages I receive in JSON already exist in the chat,…
-
0
votes1
answer104
viewsBug in Responsive menu
I am developing a responsive menu where in the mobile version it is called through an icone, however in some occasions when resizing the page a click event ceases to work and the class (below) .…
-
0
votes1
answer123
viewsHow do you do nothing when you click on the same div#box1?
I want when clicking on the div id box1 2x or more to do nothing using Jquery and/or javascript $(document).ready(function(){ var exe=false; var nuns=0; $('div#box1').on("click", function(){…
-
0
votes3
answers94
viewsLock to not show another div while one is already visible to the user
What about you guys, huh? Guys, I’m having a question, I have a posting system similar to facebook, and as you know, there is in the post for the user to open the settings to delete and etc, that by…
jqueryasked 6 years, 9 months ago Breno Castro 47 -
0
votes2
answers361
viewsProblems with jquery and input mask
I’m trying to put a value on the inside of a input which is masked both in typing and in the entered value. Well, I have a list of real estate listings in the database that I pull to the front,…
-
0
votes0
answers23
viewsJQUERY object with dynamic string
I have a for() that adds some elements in the div#chat_box according to the JSON returned in an AJAX. Only that I would like to see how many data-Identity elements equal to those returned in JSON…
-
0
votes1
answer1611
viewsJson Special Characters Error
I have a script where, after selecting the first select it returns me in the second select the currency referring to the country, but these countries and coins when you have special requirements are…
-
0
votes2
answers193
viewsarrange automatic paging
this paging is working perfectly, there is only one thing, when the person dies until the end it brings the last record of the bank everything right, then it keeps showing the message of…
-
0
votes1
answer1294
viewsError saving monetary data: A non well Formed Numeric value encountered
Contextualization: I’m using the library *Jquery-maskMoney to format monetary data. But when saving this data the following error occurs: A non well Formed Numeric value encountered Jquery library:…
-
0
votes1
answer602
viewsHow to use Javascript with Bootstrap4?
I’m doing my front end with Bootstrap, I want to use js for events like onclick, for example. If you can’t see the image (short version): <html> <head> <title>AgileHub -…
-
0
votes4
answers102
viewsProblems with click jquery
I have the following code: <script type="text/javascript" src="js/jquery.js"></script> <script type="text/javascript"> $.getJSON('livros.json', function(data) { $.each(data,…
-
0
votes1
answer651
viewsSend input file by Ajax
How do I send a file by email using Ajax? When I fill out the form, all data is sent minus the upload. By Php I can send everything right, the problem is when I run the ajax function, it does not…
-
0
votes1
answer53
viewsTarget page with option already selected
I need that when the user click on a link it already directs to a page where there is a select. So far so good. The problem is to direct to this page and already be selected one of the options. For…
-
0
votes0
answers30
viewsUpload uploaded by ajax
I did the code in ajax to send information through the click method, but the file does not arrive in the email, only the other data, in the Console appears the array with file type, size, name,…
-
0
votes1
answer640
viewsformat json return with javascript
I have the following code function functionCLick(name) { $.getJSON('livros.json', function(data){ $.each(data, function(i, item){ if(item.name == name){…
-
0
votes0
answers73
viewsAnimate Delay with jquery
I was wondering how I do to put a delay on image exchanges using jQuery. I did a test and it’s not working, follow the code below. $(function() { $('a[href*=#]').on('click', function(e) {…
-
0
votes1
answer262
viewsConsume via Jquery-Ajax, an API on localhost:28033, from a page on localhost:7545
I’m trying to do one thing, but it’s not working. I have two projects . Net Core 2.0 , an API, and an MVC. I want to run ajax calls from the MVC project, to API project controllers. I open two…
-
0
votes1
answer134
viewsWhy is fullcalendar not loading css?
Good afternoon I’m having a little trouble implementing fullcalendar.. it appears all right, but the CSS does not load (I think) Am I making any wrong imports? Or is something missing? Thank you in…
-
0
votes0
answers33
viewsError sending large volume email with Gmail and Phpmailer account
We have a script for sending emails, which may be few or many, depends on the need of our staff RH, I am unable to solve the problem and treat satisfactorily the error message being presented and…
-
0
votes0
answers41
viewsMargin control and view of the exported file with . wordExport() (Jquery)
Good morning. I would like help with the . wordExport() Jquery command. I am managing to export html without problems to word document, however, when I open the document, the margins are the default…
-
0
votes0
answers77
viewsDisable a button in a set of buttons (PHP Jquery)
I did a script on Jquery for the installation of software by that of a script PHP. The Jquery takes the installation request via a button created in a script HTML and calls the PHP that makes the…
-
0
votes3
answers149
viewsClick on Dynamically generated ID
Good night! I have a remove button which is generated via Jquery. I would like to know how to click this button via pure Javascript. I’ve tried different shapes the button is not seen in the source…
-
0
votes1
answer141
viewsHow to pass an array by ajax to the controller?
I have an ajax that sends data from my selects to my controller and from there I do a check and query, so far everything is working perfectly. The problem is that the last select that sends is an…
-
0
votes0
answers22
viewsHow to control events of dynamically inserted HTML elements later
I generated a professional HTML card with Javascript. The list is populated after clicking on the category: var professionalsCards = ''; $.each(professionalsData, function(i, item) {…
-
0
votes1
answer1562
viewsHow to make a single button on and off and click send value in URL
In the code below each I have two Forms one to send the value 1 and one to send 0 and both Forms send this value via GET When I send the GET PUMP STATUS N°1::="motor": receives the return of the PLC…
-
0
votes2
answers329
viewsError using Slick.js in Jquery modal
I’m having trouble using the Slick JS , I’m creating a list of images I bring from the database with PHP. <ul id="imagemProdContainer" class="imagemProdContainer"> <?php…
-
0
votes1
answer263
views -
0
votes0
answers83
viewsRestore removed element with jquery
The element div.mega-posts is inside a menu, nav, this element, when depending on the resolution, goes into the element ul#overflow where it is not necessary, and then we remove with .remove(). So…
jqueryasked 6 years, 9 months ago John Quimera 541 -
0
votes1
answer165
viewsSend form without loading page via json
I’m developing a website and I’m using Windows, and I need to send a form without updating the page, I’m using jquery but I don’t know much how someone can help me?. html form <form>…
-
0
votes1
answer478
viewsHow to view data (.log) in real time on an HTML page?
So I’m trying to make a logger that can be viewed on an HTML page in real time. The page loads all the files. log’s (from: /clearing-dit/logs/) and allows clicking on each one to show its contents.…
-
0
votes3
answers93
viewsPopular table in page loading
Hello. I am creating a page of registration of people, every click on the save button is generated a csv file that the next page load should be used to show on the screen the already made entries,…
-
0
votes0
answers65
viewsJquery-Send Post to save to database
I’m developing a site that takes the data of a particular location and when clicking the button it has to save elsewhere and for this I’m using Jquery but I’m not able to save in my bank someone can…
-
0
votes0
answers384
viewsApply water effect on div
I got a div that’s the breadcrumb of the page. .banner-blog { background: url(http://www.hostmove.com.br/geral.jpg) no-repeat scroll; background-attachment: fixed; background-size: 100%; /*…
jqueryasked 6 years, 9 months ago Rogério Pancini 397 -
0
votes0
answers85
viewsDeserialize an XML and display your data in an input
I need to create an upload button that by reading the xml of my invoice can display the key of the Nfe that is inside the tag , inside an input. I have used several methods and is not drying out.…
-
0
votes1
answer686
viewsMask Currency Input readonly
I would like to know how I can be putting coin mask, since my input="Resulted field" is locked and added value automatically after placing a value in the above input. I tried to add the mask in the…
-
0
votes1
answer767
viewsBootstrap-3-Typeahead, list options based on search displaying another field
Using Bootstrap-3-Typeahead plugin performing the search based on what the user type and displayed the information from another column of the database. My server-side method performs the filter…