Reputation: 6865
I have multiple grids in my page. I want to select of grids using jquery. How can I select them?
$("how find grids?").each(function (index, element) {
if (element) {
console.log("element: " + element);
}
});
Upvotes: 0
Views: 616