//objAppend
function objAppend(objId, content){
    jQuery("#" + objId).append(content);
}

function objHide(objId){
    jQuery("#" + objId).hide();
}

function objShow(objId){
    jQuery("#" + objId).show();
}

function objReplaceWith(objId, content){
    jQuery("#" + objId).replaceWith(content);
}

function objEach(strExpr, fun){
    jQuery(strExpr).each(fun);
}

//set Attr or get Attr
function objAttr(strExpr, strAttrName, strAttrValue){
    if (strAttrValue == null){
        return jQuery(strExpr).attr(strAttrName);
    }else{
        jQuery(strExpr).attr(strAttrName,strAttrValue);
    }
}

function getDomHTML(obj){
    return jQuery(obj).html();
}

function getDomText(obj){
    return jQuery(obj).text();
}
function getDomValue(obj){
    return jQuery(obj).val();
}

function setDomHTML(obj, value){
    return jQuery(obj).html(value);
}

function setDomText(obj, value){
    return jQuery(obj).text(value);
}
function setDomValue(obj, value){
    return jQuery(obj).val(value);
}
