Question

I have a table and i would like to have Δ symbol in one of my header.

$('#id').jqGrid ({
colNames : [
        'sl.no',..., 'Δ'
    ]
})

But rendering i am getting Δ in html.

Please suggest a way to print Δ symbol.

Was it helpful?

Solution

Use the HTML special character instead.

Δ

$('#id').jqGrid ({
colNames : [
        'sl.no',..., 'Δ'
    ]
})
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top