Open.Core.Html.AppendDiv C# (CSharp) Method

AppendDiv() public static method

Creates and appends a DIV element within the given parent.
public static AppendDiv ( jQueryObject parent ) : jQueryObject
parent jQueryObject The parent element to insert into
return jQueryObject
        public static jQueryObject AppendDiv(jQueryObject parent) { return Append(parent, Div); }