$(document).ready(function() {
$('.scroll').selectRow({
delButtonSelect: '#' + deleteButtonID,
editButtonSelect: '#' + editButtonID
})
.createCheckboxRange({
chkSelected: Common.highlightParentRows
})
.showExtraInfo('.LargeField_link', '.extra_info', 800);
setBoxSizes(40);
});
The expression above is a part of a web application that uses jquery. I am tyring to understand what it does. I went thru the w3schools tutorial on jquery, but I couldn’t figure out the expression above.
Any pointers on what I should search in google to understand the expression above would be greatly appreciated.
It’s not jQuery core code, jQuery base code doesn’t have
selectRow\createCheckboxRange\showExtraInfofunctions…So it’s probably a plugin of jQuery. So we can’t know what it does.
By the way, searching those functions on Google returned pretty much this question only…
So it’s probably a “home-made” plugin.