public prepend(content: string, element: any): void {
        const $element = this.getElement(element);
        $element.prepend(content);
    }