[jQuery] BLOCK method

[jQuery] BLOCK method


Hi All -
I am using the block method to block a specific element on my page.
Below is the syntax I used to try to block it.
$(document).ready(function() {
$('#btnBlock').click(function() {
$('#tblTest').block({ css: { backgroundColor: 'red', color:
'red' , height: '3px'} });
});
});
THe block works, the strange thing is, it blocks more than what it
should. It blocked half of my page vs blocking only the specific
element that is asked. Secondly, my css doesnt work.
Any feedback is appreciated.
Savoy