• Resolved pasalomoco

    (@pasalomoco)


    Is it possible to make the video URL field required only when you select
    “Online event”
    YES
    ??

Viewing 1 replies (of 1 total)
  • Thread Starter pasalomoco

    (@pasalomoco)

    I′ve already done with jquery simple code, thanks

    (function($) {
        $(document).ready(function() {
            var show = function() {
                $('.fieldset-event_video_url').show();
              };
            show();
            var hide = function() {
                $('.fieldset-event_video_url').hide();
              };
            hide();
            $( "input[value*='yes']" ).on( "click", show );
            $( "input[value*='no']" ).on( "click", hide );      
        });
    })( jQuery );
Viewing 1 replies (of 1 total)
  • The topic ‘Video URL appears in Offline event too’ is closed to new replies.