Rukes

Untitled

Feb 3rd, 2022
1,413
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.19 KB | None | 0 0
  1. <script>
  2. $(".availability-amount").each(function () {
  3.     let text = $(this).text()
  4.     if(text.includes(">")){
  5.         text = text.replace(">", "více než")
  6.         $(this).text(text)
  7.     }
  8. })
  9. </script>
Advertisement
Add Comment
Please, Sign In to add comment