The documentation says to...
$("a[rel*=leanModal]").leanModal();
Using rel= in this way in the <a> tag is deprecated.
I recommend removing the rel= and the name= from <a> and using a class name instead...
$(".yourOwnClassName").leanModal();
This will help pass W3C HTML Validation.
The documentation says to...
$("a[rel*=leanModal]").leanModal();Using
rel=in this way in the<a>tag is deprecated.I recommend removing the
rel=and thename=from<a>and using a class name instead...$(".yourOwnClassName").leanModal();This will help pass W3C HTML Validation.