Plugin Directory

Changeset 1857285


Ignore:
Timestamp:
04/12/2018 04:21:07 PM (8 years ago)
Author:
billknechtel
Message:

Update tested-up-to and copyright date

Location:
jquery-autotarget
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • jquery-autotarget/tags/1.0.0/readme.txt

    r1318146 r1857285  
    44Requires at least: 3.0
    55Stable tag: 1.0.0
    6 Tested up to: 4.4
     6Tested up to: 4.9
    77License: MIT
    88License URI: http://opensource.org/licenses/MIT
     
    1313== Description ==
    1414
    15 There is a little gotcha when you're writing standards compliant code, but still
    16 want off-site links to open in new windows. XHTML 1.0 Strict deprecated the use
    17 of the "target" attribute. Early versions of HTML5 also had this deprecation,
    18 but have since brought it back. In either case, making sure the target attribute
    19 is set on every off-site link can be tedious.
     15There is a little gotcha when you're writing standards compliant code, but still want off-site links to open in new windows. XHTML 1.0 Strict deprecated the use of the "target" attribute. Early versions of HTML5 also had this deprecation, but have since brought it back. In either case, making sure the target attribute is set on every off-site link can be tedious.
    2016
    2117= Enter jQuery.autoTarget =
    2218
    23 Instead of going through the tedium of ensuring your target attributes are set,
    24 this jQuery plugin automatically scans all the links on a page, and sets the
    25 attribute for you (target="_blank") if the href attributes domain isn't the same
    26 as the domain the page is served from. Just to sweeten the deal, it also sets
    27 any offsite link to have a class of "external-link", so you can style offsite
    28 links in the manner of your choice. Easy-peasy. And it only weighs in at
    29 272 bytes!
     19Instead of going through the tedium of ensuring your target attributes are set, this jQuery plugin automatically scans all the links on a page, and sets the attribute for you (target="_blank") if the href attributes domain isn't the same as the domain the page is served from. Just to sweeten the deal, it also sets any offsite link to have a class of "external-link", so you can style offsite links in the manner of your choice. Easy-peasy. And it only weighs in at 272 bytes!
    3020
    3121= No-clobber =
    3222
    33 Just in case, the script does not touch any link that already has a target set,
    34 so if you're already doing something with the target attribute, this won't
    35 clobber your extant work.
     23Just in case, the script does not touch any link that already has a target set, so if you're already doing something with the target attribute, this won't clobber your extant work.
    3624
    3725= Use of jQuery.autoTarget in Non-WordPress Sites =
    3826
    39 If you need it, my jQuery plugin sans wordpress plugin is available at
    40 https://github.com/wknechtel/jQuery.autoTarget
     27If you need it, my jQuery plugin sans wordpress plugin is available at https://github.com/wknechtel/jQuery.autoTarget
    4128
    4229== Installation ==
    4330
    44 Upload the plugin zip into your wordpress installation, or use the WordPress
    45 search utility and install from within WordPress if your installation is set up
    46 to work that way.  Then activate the plugin.  That's it!  No configuration
    47 whatsoever.
     31Upload the plugin zip into your wordpress installation, or use the WordPress search utility and install from within WordPress if your installation is set up to work that way.  Then activate the plugin.  That's it!  No configuration whatsoever.
    4832
    4933== Changelog ==
  • jquery-autotarget/tags/1.0.0/wp.jquery.autoTarget.php

    r1047222 r1857285  
    1313 * License:  MIT
    1414 *
    15  * Copyright (c) 2014 William Knechtel
     15 * Copyright (c) 2014-2018 William Knechtel
    1616 *
    1717 * Permission is hereby granted, free of charge, to any person obtaining a copy
  • jquery-autotarget/trunk/readme.txt

    r1318146 r1857285  
    44Requires at least: 3.0
    55Stable tag: 1.0.0
    6 Tested up to: 4.4
     6Tested up to: 4.9
    77License: MIT
    88License URI: http://opensource.org/licenses/MIT
     
    1313== Description ==
    1414
    15 There is a little gotcha when you're writing standards compliant code, but still
    16 want off-site links to open in new windows. XHTML 1.0 Strict deprecated the use
    17 of the "target" attribute. Early versions of HTML5 also had this deprecation,
    18 but have since brought it back. In either case, making sure the target attribute
    19 is set on every off-site link can be tedious.
     15There is a little gotcha when you're writing standards compliant code, but still want off-site links to open in new windows. XHTML 1.0 Strict deprecated the use of the "target" attribute. Early versions of HTML5 also had this deprecation, but have since brought it back. In either case, making sure the target attribute is set on every off-site link can be tedious.
    2016
    2117= Enter jQuery.autoTarget =
    2218
    23 Instead of going through the tedium of ensuring your target attributes are set,
    24 this jQuery plugin automatically scans all the links on a page, and sets the
    25 attribute for you (target="_blank") if the href attributes domain isn't the same
    26 as the domain the page is served from. Just to sweeten the deal, it also sets
    27 any offsite link to have a class of "external-link", so you can style offsite
    28 links in the manner of your choice. Easy-peasy. And it only weighs in at
    29 272 bytes!
     19Instead of going through the tedium of ensuring your target attributes are set, this jQuery plugin automatically scans all the links on a page, and sets the attribute for you (target="_blank") if the href attributes domain isn't the same as the domain the page is served from. Just to sweeten the deal, it also sets any offsite link to have a class of "external-link", so you can style offsite links in the manner of your choice. Easy-peasy. And it only weighs in at 272 bytes!
    3020
    3121= No-clobber =
    3222
    33 Just in case, the script does not touch any link that already has a target set,
    34 so if you're already doing something with the target attribute, this won't
    35 clobber your extant work.
     23Just in case, the script does not touch any link that already has a target set, so if you're already doing something with the target attribute, this won't clobber your extant work.
    3624
    3725= Use of jQuery.autoTarget in Non-WordPress Sites =
    3826
    39 If you need it, my jQuery plugin sans wordpress plugin is available at
    40 https://github.com/wknechtel/jQuery.autoTarget
     27If you need it, my jQuery plugin sans wordpress plugin is available at https://github.com/wknechtel/jQuery.autoTarget
    4128
    4229== Installation ==
    4330
    44 Upload the plugin zip into your wordpress installation, or use the WordPress
    45 search utility and install from within WordPress if your installation is set up
    46 to work that way.  Then activate the plugin.  That's it!  No configuration
    47 whatsoever.
     31Upload the plugin zip into your wordpress installation, or use the WordPress search utility and install from within WordPress if your installation is set up to work that way.  Then activate the plugin.  That's it!  No configuration whatsoever.
    4832
    4933== Changelog ==
  • jquery-autotarget/trunk/wp.jquery.autoTarget.php

    r1047222 r1857285  
    1313 * License:  MIT
    1414 *
    15  * Copyright (c) 2014 William Knechtel
     15 * Copyright (c) 2014-2018 William Knechtel
    1616 *
    1717 * Permission is hereby granted, free of charge, to any person obtaining a copy
Note: See TracChangeset for help on using the changeset viewer.