jquery - Remotely fatch content for Panel in Bootstrap -


i implementing bootstrap panel in 1 webpages in project let - index.html. now, need is, when click on header of panel open accordion data, data should come other page let call - accorddata.html

i search on it, suggestion on remote data fetch modal.

how can fetch data in panel other page when click on accordion?

try this:

$("#foo").click(function(){      $.ajax({        method: "get",        url: "some.php",        success: function (data)       {            $("#bar").html(data);       }        }); }) 

assuming return formatted html string.


Comments

Popular posts from this blog

html - Outlook 2010 Anchor (url/address/link) -

javascript - Why does running this loop 9 times take 100x longer than running it 8 times? -

Getting gateway time-out Rails app with Nginx + Puma running on Digital Ocean -