Hi,
I’m hoping there’s Rails developers who are working with jquery mobile and can help me out with this simple thing. I’m trying to update a div on a page with an Ajax call and it doesn’t work. If I call jquery directly from the browser, the div gets updated. However, if I call it through a remote call, the div remains unchanged. Here’s my code:
def foobar
respond_to do |format|
format.mobile { render :layout => false }
end
end
$(‘.mydiv’).html(‘world’); // in foobar.mobile.erb
I don’t understand jquery that well, let alone jquery mobile. I tried adding .page() and .trigger(‘create’) like I’ve found on some posts, but that didn’t do anything. Also, I made sure that the cache tag was not used.
TIA,
J