| <? | <? | ||||
| foreach ($record_array as $id => $title): | foreach ($record_array as $id => $title): | ||||
| ?> | ?> | ||||
| <a href="id_search.php?id=<? echo $id; ?>&core=all"> | |||||
| <span class="title"> | |||||
| <span class="title"> | |||||
| <a href="id_search.php?id=<? echo $id; ?>&core=all"> | |||||
| <? | <? | ||||
| echo $title; | echo $title; | ||||
| ?> | ?> | ||||
| </span> | |||||
| </a> | |||||
| </a> | |||||
| </span> | |||||
| <? | <? | ||||
| endforeach; | endforeach; | ||||
| ?> | ?> | ||||
| function removeRandomTitle() { | function removeRandomTitle() { | ||||
| var elts = document.getElementsByClassName("title"); | var elts = document.getElementsByClassName("title"); | ||||
| var RandomSpan = elts[Math.floor(Math.random() * elts.length)]; | var RandomSpan = elts[Math.floor(Math.random() * elts.length)]; | ||||
| RandomSpan.innerHTML = ""; | |||||
| var TextReplacement = RandomSpan.textContent.replace(/\w/g,"-"); | |||||
| RandomSpan.removeAttribute("href"); | |||||
| RandomSpan.innerHTML = TextReplacement; | |||||
| } | } | ||||
| </script> | </script> | ||||
| </body> | </body> |