I have below code. I want to convert this as cross browser compatible. As all() is IE only function i need to convert this. Please help me.
 for(j=1,oTblRo开发者_JAVA百科ws=tblSource.rows,tLen=oTblRows.length;j<tLen;j++){
    o=oTblRows[j].all("center");        
    if(o && (o.innerText === selCenter.value)){
                  $(oTblRows[j]).show();
    }
    else{
        $(oTblRows[j]).hide();
    }
}
I believe this is what you want. We want to match all elements with the id of "center" within the current row.
o=jQuery("#center", oTblRows[j])
 
         
                                         
                                         
                                         
                                        ![Interactive visualization of a graph in python [closed]](https://www.devze.com/res/2023/04-10/09/92d32fe8c0d22fb96bd6f6e8b7d1f457.gif) 
                                         
                                         
                                         
                                         加载中,请稍侯......
 加载中,请稍侯......
      
精彩评论