You appear to be a bot. Output may be restricted
Description
Syntax for [bw_jq] shortcode
Usage
bw_jq__syntax( $shortcode );
Parameters
- $shortcode
- ( mixed ) optional default: bw_jq –
Returns
voidSource
File name: oik/shortcodes/oik-jquery.phpLines:
1 to 12 of 12
function bw_jq__syntax( $shortcode = "bw_jq" ) { $syntax = array( "selector" => BW_::bw_skv( null, "<i>" . __( "selector", "oik" ) . "</i>", __( "jQuery selector", "oik" ) ) , "method" => BW_::bw_skv( null, "<i>" . __( "method", "oik" ) . "</i>", __( "jQuery method to perform", "oik" ) ) , "script" => BW_::bw_skv( null, "<i>" . __( "script-name", "oik" ) . "</i>", __( "Handle for the jQuery script", "oik" ) ) , "debug" => BW_::bw_skv( "false", "true", __( "Use true when you want to debug the jQuery", "oik" ) ) , "windowload" => BW_::bw_skv( "false", "true", __( "Use true when the jQuery is to run when the window has loaded", "oik" ) ) , "parms" => BW_::bw_skv( null, "<i>" . __( "parm=value1,parm2=value2", "oik" ) . "</i>", __( "Variable list of parameters", "oik" ) ) , "src" => BW_::bw_skv( null, "<i>" . __( "ID", "oik" ) . "</i>|<i>" . __( "URL", "oik" ) . "</i>", __( "ID or full URL of JavaScript", "oik" ) ) , "inline" => BW_::bw_skv( null, "T|Y", __( "Set to T=True or Y=Yes when the script tag must be inline", "oik" ) ) ); return( $syntax ); }View on GitHub View on Trac