Root Zanli
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
o5t6x7pgljbm
/
public_html
/
public
/
app-assets
/
js
/
scripts
/
Filename :
css-grid.js
back
Copy
/* * CSS Grid */ //Toggle Containers on page var toggleContainersButton = $("#container-toggle-button"); toggleContainersButton.click(function () { $("body .browser-window .container, .had-container").each(function () { $(this).toggleClass("had-container"); $(this).toggleClass("container"); if ($(this).hasClass("container")) { toggleContainersButton.text("Turn off Containers"); } else { toggleContainersButton.text("Turn on Containers"); } }); });