$(function () {
// Get value
var returnsValue; // Type: boolean
returnsValue = $(".selector").wijgrid("option", "highlightCurrentCell");
// Set value
var newValue; // Type: boolean
$(".selector").wijgrid("option", "highlightCurrentCell", newValue);
});