[Answer]-How to POST and capture a jQuery ui-slider outputted value in a Django view?

1👍

Since the data is to be picked in SessionWizardView i would suggest to have a hidden field slider_value in a form. Now in the frontend this field is not visible.

The slider function will update the value in this hidden field which can be posted by posting the form. The value can then be accessed from the form object in session wizrd view.

Leave a comment