3

Hello I have a function that add combobox into the page, and I need to use the values of these combobox. When I try to acces into the jquery code it don't work. I think that I need to add the element to dom but I don't know how to do that. The id of combo is 'selectCombo'

Francesc Clopes
  • 353
  • 1
  • 7
  • 19

2 Answers2

2

You have several choices:

Pedru
  • 1,430
  • 1
  • 14
  • 32
herkulano
  • 548
  • 3
  • 10
0

Try this way:

 $("<div/>", {

  // PROPERTIES HERE

  text: "Click me",

  id: "example",

  "class": "myDiv",      // ('class' is still better in quotes)

  css: {           
     color: "red",
     fontSize: "3em",
     cursor: "pointer"
  },

  on: {
    mouseenter: function() {
      console.log("PLEASE... "+ $(this).text());
    },
    click: function() {
      console.log("Hy! My ID is: "+ this.id);
    }
  },

  append: "<i>!!</i>",

  appendTo: "body"      // Finally, append to any selector

}); 
Re_p1ay
  • 303
  • 1
  • 3
  • 12