Contact: aviboots(AT)netvision.net.il
40,750 questions
53,115 answers
573 users
<!doctype html> <html> <head> <script src="js/jquery/1.11.3/jquery.min.js"></script> </head> <body> <p></p>
<script> $( "p" ).text("Hi") </script>
</body> </html>
<!doctype html> <html> <head> <script src="js/jquery/1.11.3/jquery.min.js"></script> </head> <body> <p></p> <p></p>
<script> $( "p:first" ).text("text 1") $( "p:last" ).text("text 2") </script>
<script> $( "p:first" ).text("text 1") $( "p:last" ).text($( "p:first" ).text()) </script>