私のサイトでは、非表示のコスチューム エリアのボタンをクリックすると、すべてが閉じられます。
このボタンをクリックしたときにそれらを閉じたくありません。しかし、それらは閉鎖されています。
私はそれのために何をすべきか。
<!DOCTYPE html>
<html>
<head>
<style>
p { background:red; }
</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<p>
It is a long established fact that a reader will be distracted. The point of using Lorem Content is here...
</p>
<p>
<span>Mr [Name], [Surname]</span>
<a href="http://www.mobilyala.com" />
<img src="http://www.mobilyala.com/home.png" alt="Home" />
</a>
Welcome to our website. You can read all about our services. We are working on dekorasyon
<button>Hidden Custom Area</button>
</p>
<script>
$("button").click(function () {
$("p").empty();
});
</script>
</body>
</html>