Welcome, Guest! Registration

loc2log

Tuesday, 2024-04-23
Main » 2012 » June » 24
jQuery “Add Bookmark” plugin – abookmark - seems like a decent jQuery plugin.

Using it with button is the same as with 'a' link:
<script type="text/javascript" src="http://YOUR_SITE/jquery.min.js"></script>
<script type="text/javascript" src="http://YOUR_SITE/jquery.abookmark.min.js"></script>
<input type="button" id="btn_bookmark" value="Bookmark" title="Save to browser's bookmarks."/>
<script>
$(document).ready(
function () {
$('#btn_bookmark').abookmark();
});
</script>
It is cool it understands button's "disabled" property.
Views: 1971 | Added by: loc2log | Date: 2012-06-24 | Comments (0)

Old good technology of HTML image maps + jQuery = totally awesome maps.

Totally awesome jQuery plugin maphilight: image map mouseover highlighting

Here is some info on the HTML map - HTML <map> Tag, Creating HTML Image Maps

Views: 1070 | Added by: loc2log | Date: 2012-06-24 | Comments (0)

Seems like BeautifulSoup may help.
Views: 1057 | Added by: ep | Date: 2012-06-24 | Comments (0)