blink, méthode
Retourne une chaîne avec des balises HTML <BLINK> avant et après le texte d'un objet String.
function blink() : String
Notes
Aucune vérification n'est effectuée pour savoir si la balise a déjà été appliquée à la chaîne.
La balise <BLINK> n'est pas prise en charge dans Microsoft Internet Explorer.
Exemple
L'exemple suivant illustre l'utilisation de la méthode blink :
var strVariable = "This is a string object";
strVariable = strVariable.blink();
La valeur de strVariable après la dernière instruction est :
<BLINK>This is a string object</BLINK>