Chosen (chosen.jquery.js) is not working inside the form, after applying jquery-steps. If that code runs outside the form that is used for jquery-steps, it works perfectly fine. I am also having the same problem with datePicker
inside the jquery-steps. How can I fix this problem?
Asked
Active
Viewed 3,715 times
1

Maximillian Laumeister
- 19,884
- 8
- 59
- 78

Gabriel
- 11
- 1
- 2
-
Can you show us some relevant code? – Aug 01 '15 at 05:40
1 Answers
17
You need to initialize jquery steps first and then other plugin initialization http://jsfiddle.net/6YkZV/50/
$(function () {
//step1
$("#wizard").steps({
bodyTag: "fieldset",
headerTag: "h4"
});
//step2
$(".datepicker").datepicker();
});

Abhi
- 255
- 3
- 20