Documentation


How to use Zreshk?
First of all, we just need to add zreshk to our page. It's possible like the code below:
<script type="text/javascript" src="http://zreshk.sourceforge.net/zreshk.min.js"></script>

Then we must write our own codes with zreshk syntax in the other script tag:
<script type="text/javascript">

window.onload = function()
{
	// Place to put zreshk codes
	
	// for example making body background red
	Z("body").css("background", "red");
}

</script>