onclick=""
внутрь тега или написать скрипт. И при нажатии задавать нужный класс, а при нажатии на Close его убирать. elem.classList.add/remove("class")
– добавить/удалить класс.$(document).ready(function (e) {
$(".class").on('click', function(){
elem.classList.add/remove("class")
});
});
<!DOCTYPE html>
<html lang="en">
<head>
<title>
jQuery Detect Mobile Device
</title>
</head>
<body>
<script>
if (window.matchMedia("(max-width: 767px)").matches)
{
// The viewport is less than 768 pixels wide
document.write("This is a mobile device.");
} else {
// The viewport is at least 768 pixels wide
document.write("This is a tablet or desktop.");
}
</script>
</body>
</html>