You'll need to attach something to the "change" event of your slider
to execute a JavaScript function.

The function would contain something like this:

        //      $.ajax({

        //              url: your_url,
        //              cache: 'false',
        //              success: function (resp){ do_something(resp); },
        //              type: "POST",
        //              data: your_data_here

        //      })

Then your "success" function would contain (or call) the JavaScript to
make whatever changes in the DOM you want to make.

This is a minimal example. Once you have something working, you'll
probably want to implement a way to prevent your function from firing
too many times as someone is playing with the UI.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to