I am working with jquery mobile and ReactJS for my mobile website. So I am opening slide using JQM transition which contains ReactJS Component. How I am doing this is below code:
$(".mobi-page-create").click(function(){
$(document).bind('pagecreate', function(){
ReactDOM.render(<MobileSearch />, document.getElementById('MobileSearch'));
});
});
The ReactJS Component <MobileSearch /> contains Radio input element.
The Problem is that the JQM UI classes are added to the container of the page loaded in the slide but not to the input fields which are created by ReactJS Component.
How it can be done.
Thanks in advance.