FMBL: QUICK!! i need help asap!!

Nightime14

Junior Member
Joined
Nov 29, 2009
Messages
171
Reaction score
50
Okay I have a question on how this person is doing this pop up? it is step 2 in the picture and this pop up appears when you click the blue link on step 2 that says "click here to learn how"
w8q1zt.jpg
 
Last edited:
The Developer Wiki is your friend:
Code:
http://wiki.developers.facebook.com/index.php/Fb:dialog

The code to use is:
Code:
<fb:dialog id="my_dialog">
  <fb:dialog-title>
    Whatever you want the title to be
  </fb:dialog-title>    
  <fb:dialog-content>
    Whatever you want the content to be!
  </fb:dialog-content>
  <fb:dialog-button type="button" value="Close" close_dialog=1 /> 
</fb:dialog>

<a href="#" clicktoshowdialog="my_dialog" style="border-top: solid 1px">Click here to read more</a>
 
Nightime14 would you mind posting the code to your landing page as well?
 
Back
Top