[ Index ]

PHP Cross Reference of WordPress Trunk (Updated Daily)

Search

title

Body

[close]

/wp-admin/js/ -> xfn.js (source)

   1  /**
   2   * Generates the XHTML Friends Network 'rel' string from the inputs.
   3   *
   4   * @deprecated 3.5.0
   5   * @output wp-admin/js/xfn.js
   6   */
   7  jQuery( function( $ ) {
   8      $( '#link_rel' ).prop( 'readonly', true );
   9      $( '#linkxfndiv input' ).on( 'click keyup', function() {
  10          var isMe = $( '#me' ).is( ':checked' ), inputs = '';
  11          $( 'input.valinp' ).each( function() {
  12              if ( isMe ) {
  13                  $( this ).prop( 'disabled', true ).parent().addClass( 'disabled' );
  14              } else {
  15                  $( this ).removeAttr( 'disabled' ).parent().removeClass( 'disabled' );
  16                  if ( $( this ).is( ':checked' ) && $( this ).val() !== '') {
  17                      inputs += $( this ).val() + ' ';
  18                  }
  19              }
  20          });
  21          $( '#link_rel' ).val( ( isMe ) ? 'me' : inputs.substr( 0,inputs.length - 1 ) );
  22      });
  23  });


Generated : Sat Apr 20 08:20:01 2024 Cross-referenced by PHPXref