Javascript komut / değişken Web Domain / Sitede dayalı

0 Cevap php

I'm using the following code for fetching a latest tweet but I would like the TWITTERUSERNAME to be different depending on the domain it is on as it's a template that is being called from one place but used across multiple domains.

<script type="text/javascript">
    jQuery('document').ready(function() {
        jQuery.getJSON('http://twitter.com/statuses/user_timeline/TWITTERUSERNAME.json?callback=?', function(data) {
             jQuery('#tweet').html(data[0].text);
        });
    });
</script>

Ben php deyimi komut TWITTERUSERNAME değerini değiştirmek için ise sadece bir çeşit tahmin ediyorum?

Bu konuda herhangi bir işaretçiler olurdu

0 Cevap