Title: hashtoken's Replies | WordPress.org

---

# hashtoken

  [  ](https://wordpress.org/support/users/hashtoken/)

 *   [Profile](https://wordpress.org/support/users/hashtoken/)
 *   [Topics Started](https://wordpress.org/support/users/hashtoken/topics/)
 *   [Replies Created](https://wordpress.org/support/users/hashtoken/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/hashtoken/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/hashtoken/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/hashtoken/engagements/)
 *   [Favorites](https://wordpress.org/support/users/hashtoken/favorites/)

 Search replies:

## Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ajax WP Query Search Filter] Use of deprecated(1.7) / removed(1.9) .live() method](https://wordpress.org/support/topic/use-of-deprecated17-removed19-live-method/)
 *  Thread Starter [hashtoken](https://wordpress.org/support/users/hashtoken/)
 * (@hashtoken)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/use-of-deprecated17-removed19-live-method/#post-4149239)
 * Perfect. Thank you TC.K
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ajax WP Query Search Filter] Use of deprecated(1.7) / removed(1.9) .live() method](https://wordpress.org/support/topic/use-of-deprecated17-removed19-live-method/)
 *  Thread Starter [hashtoken](https://wordpress.org/support/users/hashtoken/)
 * (@hashtoken)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/use-of-deprecated17-removed19-live-method/#post-4149176)
 * I just noticed 5 other uses of .live() used in “admin/scripts/admin_awqsfjs.js”
   that I thought I’d also point out…
 *     ```
       $('.closex').live('click', function() {...
       $('.addTaxo').live('click',function() {...
       $('.addCmf').live('click',function() {...
       $('.genv').live('click',function() {...
       $('.remove_row').live('click',function(e) {
       ```
   
 * would be
 *     ```
       $(document).on('click', '.closex', function(e) {...
       $(document).on('click', '.addTaxo', function(e) {...
       $(document).on('click', '.addCmf', function(e) {...
       $(document).on('click', '.genv', function(e) {...
       $(document).on('click', '.remove_row', function(e) {...
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Image Widget] [Plugin: Image Widget] Broken in WordPress 3.3](https://wordpress.org/support/topic/plugin-image-widget-broken-in-wordpress-33/)
 *  [hashtoken](https://wordpress.org/support/users/hashtoken/)
 * (@hashtoken)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/plugin-image-widget-broken-in-wordpress-33/#post-2450610)
 * w00t! Thanks a lot Matt. Again, thanks for the great plugin.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Image Widget] [Plugin: Image Widget] Broken in WordPress 3.3](https://wordpress.org/support/topic/plugin-image-widget-broken-in-wordpress-33/)
 *  [hashtoken](https://wordpress.org/support/users/hashtoken/)
 * (@hashtoken)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/plugin-image-widget-broken-in-wordpress-33/#post-2450607)
 * I agree with jzimmer76. I’ve been using the Image Widget (nice plugin BTW) with
   WP v3.2.1 without problem.
 * I upgraded to WP v3.3 today. The Image Widgets that were already setup prior 
   to updating still work though the [Change Image] button is no longer functional.
   When adding new widgets the [Add Image] button does not seem to work (which is
   kind of a problem 😉
 * Everything I’ve got is up-to-date. I’ve cleared my cache as you’d suggested. 
   I’ve disabled all other plugins to test for conflicts, but I still can’t get 
   Image Widget (v3.2.9) to work with w/ WP 3.3.
 * I assume this is related to the changes made to the Media Uploader in v3.3.
 * …oh, and I just checked for JS errors and I noticed on line 95 (image-widget.
   js):
    `tb_show("Add an Image", event.target.href, false);` the event object you’re
   using is named `ev` not `event`. After changing `event.target.href` to `ev.target.
   href` the plugin works again. 🙂

Viewing 4 replies - 1 through 4 (of 4 total)