View Single Post
Old 01-10-2011, 04:44 PM  
BestXXXPorn
Confirmed User
 
BestXXXPorn's Avatar
 
Join Date: Jun 2009
Location: Asheville, NC
Posts: 2,277
No need for a plugin if you just need an element or two (jQuery style):

Code:
<script type="text/javascript">
  var blink = function() {
    $('#eleId').toggle();
  };

  $(document).ready(function() {
    setInterval(blink, 1000);
  });
</script>
__________________
ICQ: 258-202-811 | Email: eric{at}bestxxxporn.com
BestXXXPorn is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote