Hello,
I use this plugin for a Wordpress Page and its Work perfect, but when i with my Samsung Galaxie go to the Page and Click on the Select Box, then open it as in Desktop Mode, not like in Mobile Mode.
The Code for the Select Box is:
echo '<select class="postcount" name="postcount" title="Select one">';
$html = '';
foreach ( $postcount_options as $k => $v ) {
$url = add_query_arg('postcount', $v);
$html .= '<option value="' . $url. '"' . selected( $v, $postcount, false ) . '>' . $v . '</option>' . "\n";
}
echo $html;
echo '</select><!--/postcount-->';
And the Init Code for the Select Box is:
jQuery(function($){
$(document).ready(function(){
$("select").selectBoxIt({
});
}); // END function
But on your Demo Site its work with my mobile Phone.
Hello,
I use this plugin for a Wordpress Page and its Work perfect, but when i with my Samsung Galaxie go to the Page and Click on the Select Box, then open it as in Desktop Mode, not like in Mobile Mode.
The Code for the Select Box is:
And the Init Code for the Select Box is:
jQuery(function($){
$(document).ready(function(){
$("select").selectBoxIt({
});
}); // END function
But on your Demo Site its work with my mobile Phone.