$(document).ready(function () {
//Hide (Collapse) the toggle containers on load
$(".toggle_container").hide();
//Switch the "Open" and "Close" state per click then slide up/down (depending on open/close state)
$("h6.trigger").click(function
$(this).toggleClass("active").
return false; //Prevent the browser jump to the link anchor
});
$('#Edit_Name').dialog({
autoOpen: false,
draggable: true,
title: "Name",
modal: true,
open: function (type, data) {
$(this).parent().appendTo("
}
});