Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2. $('.tattootext').on('click', function() {
  3.   $('.textafter').text('Текст при клике на тату');
  4. });
  5. $('.piercingtext').on('click', function() {
  6.   $('.textafter').text('Текст при клике на пирсинг');
  7. });
  8. $('.eyebrowtext').on('click', function() {
  9.   $('.textafter').text('Текст при клике на татуаж');
  10. });
  11. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement