Hello @medabida, Savy does not work for elements without an ID attribute.
I've patched the code locally and this is what I have come up with a workaround for elements that do NOT have an "id" specified.
savy.js line # 6
add this
if(!this.id) this.id = $(this).attr("name");
after
if (order == "load") { $(this).each(function() {
so final code is
if (order == "load") { $(this).each(function() { if(!this.id) this.id = $(this).attr("name"); if ($(this).is(":radio")) {
Hello @medabida, Savy does not work for elements without an ID attribute. I've patched the code locally and this is what I have come up with a workaround for elements that do NOT have an "id" specified.
savy.js line # 6 add this
if(!this.id) this.id = $(this).attr("name");
afterif (order == "load") { $(this).each(function() {
so final code is
if (order == "load") { $(this).each(function() { if(!this.id) this.id = $(this).attr("name"); if ($(this).is(":radio")) {
Hope this helps ~Rajesh