I am using Ymacs with Filepicker.io from here and i am trying to retrieve the content div using ajax.
But the problem is I can't include jQuery library too because it is resulting a conflicting and the ajax still not working i also tried this code from jQuery but it doesn't seem that it is effecting anything.
I put the no noConflict in two place.
Any ideas how to solve this problem?
<script type="text/javascript" src="/js/jquery-1.7.2.min.js">
$.noConflict();
window.setInterval(getAjax, 3000);
function getAjax() {
$.ajax({
type: "POST",
url: '/index',
data: "some-data"
});
}
</script>