Discussions
Join us for complimentary one-day events around the world and step into a future fueled by AI and limitless potential. Explore new breakthroughs, sharpen your skills, and connect with experts who are shaping what’s next. Experience bold keynotes, interactive learning, and connections that span the global NetSuite community. Discover what's next at SuiteConnect Tour 2026.
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