How to use image-picker's customizable jquery callback options -
so i'm trying use http://rvera.github.io/image-picker/
the documentation section gives example of how use options, provides no example code of how insert callback functions.
i tried adding anywhere didn't work.
$( "select" ).clicked(function() { $( ).slideup(); //random execution });
i realize answer obvious familiar jquery, i'm relatively new, appreciated.
i should configured other options:
$("select").imagepicker({ hide_select : true, show_label : false, clicked: function() { console.log('image selected'); } });
Comments
Post a Comment