<html>
<head>
<script src="../../ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("a[hreflang|='en']").css("background-color", "yellow");});
</script>
</head>
<body>
<a href="../index.html" hreflang="en">w3schools.com</a><br>
<a href="../index.html" hreflang="en-us">w3schools.com</a><br>
<a href="../index.html" hreflang="us-en">w3schools.com</a><br>
<a href="../index.html" hreflang="fr">w3schools.com</a>
<p>This selector selects both "en" and "en-us".</p>
</body>
<!-- Mirrored from www.w3schools.com/jquery/tryit.asp?filename=tryjquery_sel_attributeprefix2 by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 05 Jun 2019 14:32:51 GMT -->
</html>