Discussions
SuiteWorld brings thousands of innovators, builders, and leaders together to learn, connect, and shape what’s next. This October, explore how to build a stronger foundation for growth through inspiring keynotes, major product reveals, hands-on sessions, and unforgettable moments—all in one place for our biggest event of the year. Join us
Jquery AJAX request
Is it possible to preform a jquery $.ajax() request and get it to return data right now it is just failing for everything including http://www.google.com. It seems that my Twitter plugin is working tho.
http://www.mojotone.com
<ul id="favorite-items-ul"></ul>
<script type="text/javascript">
$(document).ready(function() {
$.ajax({
//url: 'http://mojostuff.com/ai/favorites.php?email=mdmcwhorter@gmail.com//mojostuff.com/ai/favorites.php?email=mdmcwhorter@gmail.com',
url: 'http://www.google.com',
timeout: 1000,
success: function(data) {
$('#favorite-items-ul').html(data);
}
});
});
</script>
Thanks,
Bryson