

$(document).ready(function() {
$("#votar").click(function(e) {
opcao = $('input[@type=radio][@name="opcao"][@checked]').attr("id");
//alert(opcao);
 if(typeof(opcao)== "undefined") {
   // if(opcao == 'null') {
        alert("Por favor selecione uma resposta para esta pergunta");
      return false;
    }


      if($("#bloqueio").val()=="1") {

       alert("Ops você ja votou");
        return false;


  }
   $("#enquete").submit();
  return true;


   });
   
   
  
 
 
 

 });

