Linked Questions
27 questions linked to/from Bootstrap 3 with remote Modal
1 vote
1 answer
1k views
Call Bootstrap Modal that loads another HTML via Javascript [duplicate]
I have this table where, When a user clicks on a row, should open a modal with some information regarding that row. Since the content of this Modal is on another HTML file within my project, I don't ...
31 votes
5 answers
71k views
When loading an html page via ajax, will script tags be loaded?
When you load an html document using AJAX, what does it do with the nodes inside the HEAD tag: (script,link,style,meta,title) ignore them or load and parse them? And in the case of jquery 's ajax() ...
20 votes
6 answers
80k views
Open a Modal from another modal and close the first (launching) modal
I'm using Bootstrap Modal Window plugin its work fine but i would like to open another model window when i click next and close first one. how can i do it? $('[data-toggle="modal"]').click(function(e)...
7 votes
2 answers
11k views
Rails: Edit record in Bootstrap modal
I'm trying to use a Bootstrap modal in Rails to edit a record, but I can't get the modal to scope to the current record The static link is <%= link_to "Weigh Out", edit_ticket_path(ticket), "...
10 votes
2 answers
18k views
Bootstrap's Remote Modal Dialog Not Working
I'm having problems using remote modal dialogs from the Twitter Bootstrap api. I am trying to load a modal dialog with the contents from a remote html page. I have two pages, one containing the ...
4 votes
1 answer
38k views
Show bootstrap modal when click on href Laravel
How can I show modal with dynamic content from database in Laravel? my view: <li><a href="{!! action('TestsController@show', $test->slug) !!}">{!! $test->test_name !!} </a>&...
3 votes
2 answers
9k views
MVC partial view to Bootstrap modal injection - solution perplexing
I followed a great little solution over at CodeProject for injecting partial views into bootstrap modals with no explicit ajax calls required... https://www.codeproject.com/Tips/826002/Bootstrap-...
3 votes
1 answer
13k views
Passing data to Bootstrap Modal without JavaScript
I have a grid with image links on my page. When clicking one of them a modal should pop up with the image but in big format. Now I'm trying to achieve this without the use of javascript/jquery but ...
4 votes
1 answer
9k views
Bootstrap modal for multiple use
Bootstrap Modal - it looks pretty nice and nifty and I've seen great solutions... but I need help. Following task: I am about to use Bootstrap 3.0 for an eCommerce template. So I'll have a lot of "...
0 votes
1 answer
5k views
show table row to modal bootstrap
I am confused with how to show my table row to bootstrap modal, can anyone help me? here is my modal: <div id="edit_category_modal" class="modal fade" tabindex="-1" data-backdrop="static" data-...
0 votes
2 answers
2k views
Bootstrap 3 - showing ajax search results in a modal, then posting the modal elsewhere
I have a text input where a user can perform a search (for a username or email address held in a database). I already have a PHP script which does the searching etc. I want to display the search ...
2 votes
1 answer
2k views
FullCalendar list day's events modal
I'm using FullCalendar 2.4. I have an application that has the following specific parameters: Monthly View only. allDay events only. No reoccurring events. No multiple day events. I have it working ...
0 votes
1 answer
2k views
Extract data from Database and display in Modal
I have a small family tree website that I am creating. I have each persons information in a mysql database which I want to display inside a modal that pops up when a person clicks on any person. No I ...
-1 votes
2 answers
2k views
Html table in php with popup
I made a PHP file that queries data from mysql database and puts results into html table. One field on database contains links to file(s). One or more, separated with commas. Everything works great. (...
0 votes
1 answer
1k views
Bootstrap3 remote content using PHP
Again breaking my head in Bootstrap 3. I have been using BT3 with a modal window. The below code works and fetch the remote modal window for the first time and doesn't work in my second click. I have ...