[jQuery] Re: Using nbsp; (or not!)

2009-03-14 Thread Josh Powell
$(#msgUnits).text(nbsp;); will definitely not work. nbsp; is not the name of a javascript object. On Mar 13, 9:46 pm, Swatchdog scott.swatch...@gmail.com wrote: This does not work: $(#msgUnits).text(nbsp;); nor does this... $(#msgUnits).text('nbsp;'); I guess nbsp; is html only?

[jQuery] Re: Using nbsp; (or not!)

2009-03-14 Thread Jack Killpatrick
$(#msgUnits).html(nbsp;); will probably work. - Jack Swatchdog wrote: This does not work: $(#msgUnits).text(nbsp;); nor does this... $(#msgUnits).text('nbsp;'); I guess nbsp; is html only? Clues, anyone?

[jQuery] Re: Using nbsp; (or not!)

2009-03-14 Thread Swatchdog
Perfect. Simple. Learning. Thanks. On Mar 14, 3:53 am, Jack Killpatrick j...@ihwy.com wrote: $(#msgUnits).html(nbsp;); will probably work. - Jack Swatchdog wrote: This does not work: $(#msgUnits).text(nbsp;); nor does this... $(#msgUnits).text('nbsp;'); I guess nbsp; is html