How to put a select field beside the filtering input?

How to put a select field beside the filtering input?

ChromChrom Posts: 44Questions: 15Answers: 1

I want to have some divs with a select field and options integrated in my table.
e.g. for the dom
<"selectfield1"><"selectfield2">frtip

First can I only create divs?
I tried to append with jquery in initcomplete. This does not work. No fields or divs get created :(

 var select = jQuery(
        '<select><option value="">Alle Sozialen Medien</option></select>'
      )
        .appendTo(jQuery("selectfield1") )

Answers

Sign In or Register to comment.