jquery - Flip! plugin content as a hyperlink -


i'm trying make content of flip! box click-able hyperlink.

i'm new jquery, code have:

<script type="text/javascript">          $(function () {              $("#flippad a:not(.revert)").bind("mouseover", function () {                 var $this = $(this);                   $("#flipbox").flip({                     direction: $this.attr("rel"),                     color: $this.attr("rev"),                     content: $this.attr('title'),                  })                 return false;             });          });     </script>    <div id="flipbox" >select contact option below</div>  <div id="flippad">        <a href="#" class="left" rel="rl" rev="#39ab3e" title="johntk86@gmail.com">email</a>         <a href="#" class="top" rel="bt" rev="#66b7d2" title="0857100495">mobile</a>         <a href="#" class="bottom" rel="tb" rev="#dd4b39" title="click visit g+ profile">google+</a>         <a href="#" class="right" rel="lr" rev="#007baf" title="click visit in profile">linkedin</a>    </div> 

at moment title element of herf in flip pad content,

is possible make content hyperlink?

thanks.


Comments

Popular posts from this blog

html - Sizing a high-res image (~8MB) to display entirely in a small div (circular, diameter 100px) -

java - IntelliJ - No such instance method -

identifier - Is it possible for an html5 document to have two ids? -