Just use
jQuery attr method[
^] like this:
var id = $('#tblrownew0 tr:last').attr('id')
or you can access any DOM property like this:
var id = $('#tblrownew0 tr:last')[0].id
It is important for you to know, when you are working with jQuery object or DOM elements.