Wednesday, 13 March 2013

CSS, JSTL & EL Tips - My Collection


1) Change Children of an HTML Element..

$("td.v3").children(a).first().text("new text");
$('td').find('span').text('myNewText');

2) c:when & c:otherwise can't be use without c:choose.