zGlossary - Example of case sensitive search

This example will only display definitions for the term 'URL' in uppercase.

Script

$(document).ready(function () {
	$('body').glossary('terms.json', {
		ignorecase: false
	});
});

Definitions file

[
   {
       "term":"Zazar",
       "type":"0",
       "definition":"Online website builder for creating professional sites with no technical knowledge."
   },
   {
       "term":"URL",
       "type":"1",
       "definition":""
   },
   {
       "term":"HTML",
       "type":"2",
       "definition":""
   },
   {
       "term":"zGlossary plugin",
       "type":"3",
       "definition":"http://www.zazar.net/developers/jquery/zglossary/"
   }
]

Result

URL will be found

url will not be found

embedurlterm will also not be found