Skip to content

Mobile Select Box not Work #95

@ghost

Description

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({

theme: "bootstrap"}"

});

}); // END doc ready

}); // END function

But on your Demo Site its work with my mobile Phone.

Metadata

Metadata

Assignees

Labels

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions