> $(this).after("<span class='field-error'>You need to > enter a " > +fieldName+" here.</span>");
What is "fieldName", you need get that value from somewhere, before trying to use it. Also the effect is applied only on the object on which it is called, so if your label is hidden then it will appear slowly. The span tag will just appear, it will not have the fadeIn effect. I am not sure what exactly you are trying to achieve here, but hope this helps. On Dec 11, 11:24 am, WhoButSB <[EMAIL PROTECTED]> wrote: > Hello all, > I have a really simple question but, and once I figure out this little > hurdle I know I will be able to work on a lot more stuff. > > I would like to add a simple notification to fade in when some one > presses a button but I would like to attach the notification after a > label. I know I have to be really close with this code I just can't > figure it out. > > $(function(){ > $('#button').click(function(){ > $("#fieldValue label").fadeIn('slow', function (){ > $(this).after("<span class='field-error'>You need to > enter a " > +fieldName+" here.</span>"); > }); > }); > > }); > > Thanks for your help!