Reload jquery mobile styles after ajax call

Reload jquery mobile styles after ajax call

I an currently refreshing the data in a div panel by making ajax calls, but the the content is comming as plain HTML and jquery mobile is not able to apply its styles as it do when full page reload is done.

I have a table in the web page and when i reload the page, buttons comes fully styled. But when i make ajax calls the buttuns are not styled at all.

Code for buttons:
<div style="text-align: center;" data-type="horizontal" data-role="controlgroup">
      <a href="#" data-role="button"> &lt; </a>
      <a href="#" data-role="button"> 10 </a>
      <a href="#" data-role="button"> &gt; </a>
</div>

Is there any jQuery mobile function which i can call to style the elements after ajax call is made.

Thanks