منتخب: تفاوت بین نسخهها
از ولایت حضرت علی و حضرت زهرا
سطر ۱: | سطر ۱: | ||
{{#tag:html| | {{#tag:html| | ||
<div> | <div> | ||
− | <script> | + | <script> |
− | function filter() { | + | function filter() { |
− | + | let clear = document.getElementById('clearinput'); | |
− | + | let input = document.getElementById('filterInput'); | |
− | + | let filter = input.value.toUpperCase(); | |
− | + | let tr = document.querySelectorAll('.mw-parser-output p'); | |
− | + | if (filter.length > 0) | |
− | + | clear.style.display = ''; | |
− | + | else | |
− | + | clear.style.display = 'none'; | |
− | + | for (let i = 1; i < tr.length; i++) { | |
− | + | txtValue = tr[i].textContent; | |
− | + | if (txtValue.toUpperCase().indexOf(filter) === -1) | |
− | + | tr[i].style.display = 'none'; | |
− | + | else | |
− | + | tr[i].style.display = ''; | |
− | + | } | |
− | } | + | } |
− | </script> | + | </script> |
− | + | <div style="position: relative;display: inline-block;margin-bottom:10px;"> | |
− | + | <input type="text" id="filterInput" style="width:100%" placeholder="جستجو در منتخبها" oninput="filter();"> | |
− | + | <div id="clearinput" style="position: absolute;display: none;top: 5px;left: 8px;cursor: pointer;" | |
− | </div> | + | onclick="document.getElementById('filterInput').value = '';filter();">X</div> |
+ | </div> | ||
</div> | </div> | ||
}} | }} |
نسخهٔ ۱۷ ژوئیهٔ ۲۰۲۴، ساعت ۰۹:۴۲