Closed (fixed)
Project:
Popups API (Ajax Dialogs) [D7]
Version:
6.x-1.3
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Issue tags:
Reporter:
Created:
5 Jan 2010 at 12:07 UTC
Updated:
3 Jan 2014 at 01:08 UTC
Jump to comment: Most recent
Comments
Comment #1
ellishettinga commentedThank you Hans Idink for helpin me out!!
Read this:
http://api.drupal.org/api/drupal/developer--topics--javascript_startup_g...
instead of this:
$(document).ready(function(){
$(":text").css({background:"red"}).after('
').keyup(updateCount);
});
use this
Drupal.behaviors.modulenameBehavior = function (context) {
$(":text").css({background:"red"}).after('
').keyup(updateCount);
};
problem solved!
Comment #2
RedTop commentedCould you please elaborate on that. I'm not a coder, so the obvious is not so obvious to me. :P
I would like to use this BUEditor button code inside a popup:
Could I use your solution? Do you know what I need to change for this to work?