* @param name the name of the element.
* @return this selector.
*/
public Selector element(String name) {
// TODO : add methods matching tags: http://api.jquery.com/category/selectors/
Filter filter = new ElementFilter(name);
this.addFilter(filter);
return this;
}