jQuery SHA256 is a plugin based on the Javascript SHA256 implementation by Angel Marin and Paul Johnston. It enables SHA256 hashing of a value and also generation of a keyed-Hash Message Authentication Code (HMAC) using a key along with the value.

It's lightweight and fully-functional.
Download Link

// binds the function to the button
// the function receives one parameter, the input field to be hashed: $.sha256(value);

$('#ex1_button').click(function(){
	var output = $.sha256($('#ex1_source'));
	$('#ex1_result').html(output);
});

jQuery SHA256 é um plugin baseado na implementação em Javascript do algoritmo SHA256 feita por Angel Marin e Paul Johnston. Permite obter o SHA256 de qualquer valor e tabém gerar um keyed-Hash Message Authentication Code (HMAC) usando uma chave (key) e o valor.

O plugin é leve e funcional.
Download Link

// faz bind da função no click do botão
// a função recebe um parâmetro, o campo contendo o valor: $.sha256(value);

$('#ex1_button').click(function(){
	var output = $.sha256($('#ex1_source'));
	$('#ex1_result').html(output);
});

Result:
Brought to you by: