Giving this html, i want to grab \"August\" from it when i click on it:
August
i tri
You can use .html() to get content of span and or div elements.
.html()
span
div
example:
var monthname = $(this).html(); alert(monthname);