I found this code to detect android native browser:
var nua = navigator.userAgent;
var is_android = ((nua.indexOf('Mozilla/5.0') > -1 && nua.indexOf('Android ') > -1 && nua.indexOf('AppleWebKit') > -1) && !(nua.indexOf('Chrome') > -1));
but how can I create function to repleace css after detection?
I know I should use something like that:
$('jQuery selector').css({"css property name":"css property value"});
but I don't now how :(
On the same page is other function that is using jquery.
if(nua.indexOf('Android ') > -1).