All Questions
771 questions
0
votes
1
answer
58
views
Unable to Show/Hide span spinner through Javascript & AJAX?
I'm trying to show and hide a spinner on a submit button of a contact form. While the form is being submitted the spinner should be showed on the button. As soon as the form gets submitted the spinner ...
-2
votes
1
answer
647
views
How to open Bootstrap 5 Modal instantly and then load the AJAX content
The Bootstrap 5 Modal does not open until the AJAX Content is loaded. It's a bad UX for my users as users have to wait few seconds for the modal to open after clicking the View button!
So having said ...
0
votes
1
answer
35
views
no ajax complexion inside bootstrap modal
I create a modal and inside I insert an input field. When I write inside this input field a product name term, it must appear all the terms.
On blank page, I can see for ap (apple terms) all the apple ...
1
vote
3
answers
679
views
Ajax beforeSend sometimes doesn't fire to show bootstrap progress bar
I have 3 Bootstrap tabs, each with a table showing query results. When the search button is clicked, or a tab is changed, an ajax call is triggered that has a beforeSend function which shows a ...
0
votes
1
answer
196
views
send mail show bootstrap alert ajax
I wanted to do so that when we send an email through the contact form it sends the email and there is a bootstrap alert that comes out email sent. there you can see all my code html : https://jsfiddle....
1
vote
0
answers
234
views
Clear bootstrap cache
I developed a dynamic carousel. Within a form I show several records and the ID of these records is related to n number of images that I show in a carousel, making it have n number of the carousel ...
0
votes
2
answers
1k
views
Button loader using bootstrap
I am trying to replicate this codepen example
https://codepen.io/jmalatia/pen/eYLzBg?editors=1111
However, it doesn't work in my Visual Studio Code as in the site. I have included all the css and js ...
0
votes
2
answers
207
views
Results from dynamic search bar not showing up on my page?
So, I'm making a dynamic search bar and everything works as it's supposed to (getting the results from Django, converting it to JSON, JS receives the JSON, etc.), except the conversion of the results ...
1
vote
1
answer
234
views
Bootstrap Modal popup not showing on Index page
Hi i have a ajax call wherebey when i click a loacation on a loaded map it shows my modal popup when a user is logged in,but when a user is not authorized/not logged into the app it's suppose to jump ...
1
vote
0
answers
408
views
Ajax form gets submitted twice when i click on submit button second time
Simple bootstrap 5 (with validation) contact form with Ajax call gets executed only when i hit submit button second time and it also save data twice. this form is inside modal form and this behavior ...
1
vote
3
answers
2k
views
How to make popup modal appear when clicking a link using ajax?
I have few links that when user click on the link, it will appear as popup modal. However, what I have done was there modal appear but without content. I am new to ajax so I quite not understand what ...
0
votes
1
answer
877
views
Tracking multiple jquery ajax API requests with progress bar
I have an increment that takes the ids and add them to url to make multiple ajax requests.
js:
for (x = 1; x <= val['id_count']; x++) {
$.ajax({
url: baseUrl + x,
dataType: "json"...
1
vote
3
answers
610
views
Fit PartialView to Bootstrap Modal (MVC)
I'm displaying a MVC Partial View inside a Bootstrap Modal by clicking a button. My setup is like this:
Modal
<!-- Modal -->
<div class="modal fade" id="myModal" role=&...
0
votes
0
answers
254
views
Ajax function run multiple times on modal close and open
I have a form in my modal and I submit the form it submits the data and then fetches the saved data using ajax function. The problem is that, When I close the modal and re opens it and submit the form:...
4
votes
3
answers
207
views
AJAX post that uses dynamically-generated JSON is not firing to the backend
New to Bootstrap and FE development in general. I have the following page that presents the user with a table, and each row in the table has a "Change" button like so:
When the user clicks ...