<script type="text/javascript">
$(document).ready(function () {
$("input[name='test']").click(function(){
$.blockUI({
theme: true,
title: 'test',
message: 'test'
});
});
});
</script>
<html>
<form ...>
<input type="submit" name="test" value="test" />
</form>
</html>
when I use this code and this selector $("input[name='test']") blockui
not start in opera browser.
any suggestions?

