thanks for answering
I use materializecss framework, this html code produces the following
<a href="#" class="collection-item">Unread<span class="new badge">4</span></a>
but this code in b4j produces the following
*1
ws.Eval("$('#expe').append('<a href=# class=collection-item>Imbox<span class=new badge>12</span></a>')",Array As Object())
and this code gives this result
*2
ws.Eval("$('#expe').append('<a href=# class=collection-item>Imbox<span class=new>12</span></a>')",Array As Object())
the difference in the two previous examples is in *1<span class=new badge> *2 <span class=new>
the same code does not work with single quotes.
ws.Eval("$('#expe').append('<a href=# class='collection-item'>Inbox<span class='new badge'>4</span></a>')",Array As Object())
I understand it is a problem with the quotes, but not how to fix it.
I solved the problem by using.
expe.SetHtml("<a href='#' class='collection-item'>Unread<span class='new badge'>4</span></a>")
but I continue to wonder how to do with ws.eval.