[jQuery] Combining Selectors

[jQuery] Combining Selectors


I am confused why the following is returning undefined:
alert($(this + " input[type='submit']").attr('id'));
This is within the context of a plugin that I built. Removing the
this makes it correctly find the input, why I want to narrow the scope.