html - HREF Links Not Working When Using JQuery Plugin -


<div id="content">     <div id="header">         <div class="example">               <h3 id="example2"><a href="##############">news</a></h3>         </div>      </div> </div> 

for reason links not work when use jquery plugin (arctext.js). script individually rotates letters angle based on how many letters, width, height, etc. never thought affect links, ideas?

arctext splits string individual characters, therefore breaking anchor.

http://jsfiddle.net/6hrwk/

what need move anchor outside

<div class="example">             <a href='#####'>               <h3 id="example3">news news news news </h3>             </a>     </div> 

and work.


Comments

Popular posts from this blog

Change php variable from jquery value using ajax (same page) -

How can I fetch data from a web server in an android application? -

jquery - How can I dynamically add a browser tab? -