My guess is that you're not building an extension for twitter that
will run on their site, so you're violating the cross domain request
rule.  You cannot directly request from twitter.com, you'd have to
proxy through a page on your site (some page that forwarded this
request to twitter and returned the same result) or you can use jsonp
to achieve the same effect, which is probably what you're looking for.
 Hopefully this will help you.

$(document).ready(function(){
                       $.ajax( {
                                           url: 
'http://twitter.com/friendships/exists.json?user_a='+
usera + '&user_b=' + userb,
                                           dataType: "jsonp",
                       success: function(data)
                       {
                                                        if(data == true)
                                                        {
                                                                var newDiv = 
'<p>true</p>';
                                                        }

                                                        
$('#content').append(newDiv);
                       }
                       })});

On Sat, Jun 6, 2009 at 3:47 AM, grand_unifier<jijodasgu...@gmail.com> wrote:
>
>
> <!-- this is the javascript json parser function -->
>
>    <script type="text/javascript" src="../jquery-1.2.6.min.js">
>    </script>
>
>    <script type="text/javascript">
>
>    $(document).ready(function()
>     {
>                $('form#search').bind("submit", function(e)
>                {
>                        e.preventDefault();
>                        $('#content').html('');
>
>                        var query1 = urlencode($('input[name="user_a"]').val
> ()); //userA
>                        var query2 = urlencode($('input
> [name="user_b"]').val()); //userB
>
>
>                        $.getJSON('http://twitter.com/friendships/exists.json?
> user_a='+query1+'&user_b='+query2,
>                        function(data)
>                        {
>
>
>                                  if(data.text == 'true')
>                                    {
>                                      var newDiv = '<p>true</p>';
>                                    }
>
>                             $('#content').append(newDiv);
>
>                                });
>                        });
>                });
>
>          function urlencode(str) {
>            return escape(str).replace(/\+/g,'%2B').replace(/%20/g,
> '+').replace(/\*/g, '%2A').replace(/\//g, '%2F').replace(/@/g, '%40');
>          }
>    });
>
>    </script>
>
> <!-- javascript ends here -->
>
> i dont understand wats wron wth this code...could anyone plz correct
> it....plz....its very frustratin...
> any help wil be appreciated...
>

Reply via email to