Hi,
I used the Overlay which is awesome ! Thank you very much for your good work !
I have a tiny small remark about it.
To use it, it is explained that I should add a "rel" attribute on the <img> tag, which is not valid in HTML 4.01 Strict or HTML 4.01 Transitional.
As I really wanted to validate my page, I modified the code to use the "id" tag of the <img> attribute, instead of "rel" attribute. Also, the character "#" is not a valid one in an "id" attribute. So I did this:
In the HTML page, the image :
I will be happy to read about any of your thoughts on this validation "issue" !
Thank you for your time !
I used the Overlay which is awesome ! Thank you very much for your good work !
I have a tiny small remark about it.
To use it, it is explained that I should add a "rel" attribute on the <img> tag, which is not valid in HTML 4.01 Strict or HTML 4.01 Transitional.
As I really wanted to validate my page, I modified the code to use the "id" tag of the <img> attribute, instead of "rel" attribute. Also, the character "#" is not a valid one in an "id" attribute. So I did this:
In the HTML page, the image :
<img src="./images/screenshots/mam-account-manager.png" style="height:200px;" id="mam" >
In the HTML page, the "overlay detail div":
<div class="simple_overlay" id="overlay-mam">
</div>
In the tools.overlay-1.1.2.js file, lines 82 and 83:
var jq = conf.target || trigger.attr("id");
overlay = jq ? $('#overlay-' + jq) : null || trigger;
I will be happy to read about any of your thoughts on this validation "issue" !
Thank you for your time !
