I am trying to develop facebook comments application in my codeignitor project but i face problem like loading comment box and also not display all comment properly and when i use another fresh application codeignitor that works fine.
I use this code in view file
(function(d, s, id){ var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=123456789789652";
fjs.parentNode.insertBefore(js, fjs); } (document, 'script', 'facebook-jssdk'));
I use this code in controllers file
class Fb_comments extends CI_Controller { function _construct()
{ parent::_construct();
}function index() {
$this->load->view('fb_comments'); } }
any idea and advice will be appriciated
Thanks in advance.. bhavik patel
<fb:comments>
boxes on the page to make them appear. – Ja͢ck