In a JSF Facelets “web” application, is it possible to make a jQuery AJAX poll/push without the use of a component library (e.g. RichFaces/IceFaces/PrimeFaces)?
If jquery AJAX is used what should be used for the url = ” part?
Can I use the #{BackingBean.property}?
$.ajax({url:"demo_ajax_load.txt", success:function(result){
$("div").html(result);
}});
Yes it is possible the url should can be a servlet for example it should be
something like
/servlets/SomeServletNameand in your web.xml add the mapping
like this
p.s backing bean property is not related in here…