How an access to the current object inside the call to data() or maybe any other jQuery function:
$('#newVisitors').data('options', $.extend($('#newVisitors').data('options'), {
property : 'value'
}));
avoiding repeating of $('#newVisitors') selector?
You should store the jQuery object in a variable first;
Edit: If you want to use
$(this);