Reputation: 4336
How can i change this function which is currently appending a CSS class to a div on HTML
if (!this.sortDisabled) {
var $th = $(this).addClass(table.config.cssHeader);
if (table.config.onRenderHeader) table.config.onRenderHeader.apply($th);
}
to make to append this instead of adding class "table.config.cssHeader"
' <font face="webdings">6</font>'
So my question explained is how can i get this
if (!this.sortDisabled) {
var $th = $(this).addHTMLCODE( <font face="webdings">6</font>);
if (table.config.onRenderHeader) table.config.onRenderHeader.apply($th);
}
Upvotes: 0
Views: 118