Get ting Elements with CSS Class Name using jQuery.

Vishalneeraj-24503
Posted by Vishalneeraj-24503 under jQuery category on | Points: 40 | Views : 1255
<script type = "text/javascript">
$(function()
{
$('#btn').click(function()
{
var classval = $('.div_comments').html();
alert(classval)
});
})
</script>

Comments or Responses

Login to post response