um.. i need something

MhfciL

Newbie
Joined
Jun 19, 2010
Messages
1
Reaction score
0
i need the fbml code :/
3 steps ..
first you need to do like . [step 1]
sec , you need to invite friend [step2]
3rd , and now they can to see it .. [step3]
 
pretty sure that doesn't work anymore.. alternativly you can put a time delay on step 3.. but its not as effective...

Code:
<script type="text/javascript"> 
  setTimeout("showcontent();", 12000); // 12-second delay
  function showcontent(){
    document.getElementById('step3').style.display = '';
  }
</script>

and put this div around step 3

Code:
<div id="step3" style="display:none;"> </div>
 
How about giving something to the forum before you ask for something from it?
 
I thought there was a rule stating you cannot post any FBML codes or anything related to the FBML codes?
 
Back
Top