blob: 5205f9569a491d5f837df52d2d2219268a043833 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!DOCTYPE html>
<html>
<script src='https://code.jquery.com/jquery-3.5.1.slim.min.js'
integrity='sha256-4+XzXVhsDmqanXGHaHvgh1gMQKX40OUvDEBTu8JcmNs='
crossorigin='anonymous'></script>
<body>
<a href='https://www.usth.edu.vn/' id='usth'>USTH Website</a>
<script>
$('#usth').attr('href', 'https://www.hust.edu.vn/').html('HUST Website')
</script>
</body>
</html>
|