mobileFX WebKitX CEF3 ActiveX 4.x
WebKitXCEF3Lib ActiveX Control / WebKitXCEF3 Object / Delete Method

CSS3 Selector of HTML5 Element to remove.

If you are unfamiliar with CSS3 Selectors have a look in Finding the correct CSS3 Selector article.

In This Topic
    Delete Method
    In This Topic
    Description

    Delete an HTML5 Element by CSS3 Selector.

    Syntax
    Visual Basic
    Public Sub Delete( _
       ByVal Selector As String _
    ) 
    Parameters
    Selector

    CSS3 Selector of HTML5 Element to remove.

    If you are unfamiliar with CSS3 Selectors have a look in Finding the correct CSS3 Selector article.

    Remarks

    The method is equivalent to:

    Code
    Copy Code
    (function(){var el=document.querySelector(css3_selector); el.parentNode.removeChild(el);})();

     

    See Also