>  Therefore how can i use JQuery to return the html tabl element object?

$(..) is not a shortcut for document.getElementById.  It returns a
jQuery object, not a DOM element.  Use this to get the element:

$("#allProjects")[0];

_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to