You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<script type="text/javascript">
|
|
|
|
$(document).ready(function(){
|
|
|
|
$("#bing").load("https://raw.githubusercontent.com/meisnate12/PMM-Image-Sets/master/movies/readme.md", function () {
|
|
|
|
$(".image-accordion").click(function () {
|
|
|
|
this.classList.toggle("image-active");
|
|
|
|
var parent = this.parentElement;
|
|
|
|
var panel = this.nextElementSibling;
|
|
|
|
if (panel.style.maxHeight) {
|
|
|
|
panel.style.maxHeight = null;
|
|
|
|
} else {
|
|
|
|
panel.style.maxHeight = panel.scrollHeight + "px";
|
|
|
|
parent.style.maxHeight = parseInt(parent.style.maxHeight) + panel.scrollHeight + "px";
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<div id="bing"></div>
|