jQUery - insert inside label
jquery
Solution
Use `.html()` instead of `.text()`.
Problem
I want to hide a label using the `fadeOut` effect but when it is completed I want to insert inside it a ` ` ``` $('label.alert').fadeOut('slow',function(){$(this).text(' ');}); ``` but it produces a ` ` as a raw text. Any ideas ?