In general, you can just use the jQuery manipulation APIs to inject arbitrary text and elements, like $('a').append('(<b>This is a link</ b>)') Tables are a bit of a special case. In my experience, it does not work consistently, so it is better if you use the browser DOM APIs to do things like row = table.insertRow(index) and cell = row.insertCell (index)
On Jan 28, 1:50 pm, roxstyle <resut...@gmail.com> wrote: > are there any samples of injecting content? > i am familiar with hide/show of content inline, but don't grasp > "injecting" content. > if i have a table - can i inject a "div" between 2 rows? or do i need > to "inject" a new row?