Javascript examples for jQuery Method and Property:jQuery Method Example
insert an unicode in jQuery?
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript" src="https://code.jquery.com/jquery-1.8.3.js"></script> <script type="text/javascript"> $(window).load(function(){//from www .ja va 2 s. c o m $('a').attr('title', 'your unicode'); }); </script> </head> <body> <a href="refererereer">SOMETEXT</a> </body> </html>