PonyS,
на смартфоне самсунг в хроме все прекрасно работает
<!DOCTYPE html>
<html>
<head>
<title>Untitled Page</title>
<style>
#cs1
{ border: 1px solid black;
width:30%;
}
#cs2
{ border: 2px solid red;
width:30%;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script type="text/javascript">
jQuery(document).ready(function () {
jQuery("#cs1").appendTo("#cs2");
jQuery("#content").css('display', 'none');
});
</script>
</head>
<body>
<div id="cs1">CS1</div>
<div id="cs2">CS2</div>
<div id="content">CONTENT</div>
</body>
</html>