So Im having a problem with the button() function.
HTML:
<input id="nextday_button" name="nextday" type="checkbox" value="true" /><label for="nextday_button">yes</label>
<input id="submit_button" name="commit" type="submit" value="Check" />
JS:
$("#nextday_button").button().css('font-size','36px');
$("#submit_button").button().css({'font-size':'22px', 'padding': '3px 12px 3px 12px'});
The styling for the #submit_button is working perfectly, but I cant style the #nextday_button. .css() seems not working in this case. Am I doing something wrong in the HTML?