Hi,
(sorry : almost same post yesterday, but I've posted it on a closed ticket and not a of new topic)
After installation of my 2.5 component, I've got on each screen this error.
Undefined property: JDomFrameworkJqueryCore::$live
I've seen the ticket :
click here but this line doesn't appear in helper :
$doc->addScript('
code.jquery.com/jquery.min.js');
As it seems to be due to live() property in last version of jquery, I've tried to change in dom/framework/jquery/core.php :
protected $hostedSource = 'http://code.jquery.com/jquery.min.js';
by
protected $hostedSource = 'http://code.jquery.com/jquery-1.8.2.min.js';
and
$this->attachJs[] = 'jquery.min.js';
by
$this->attachJs[] = 'jquery-1.8.2.min.js';
Same error, it seems that the changes I've made didn't change anything...
PS : there's a reference to 1.9.1 css : $doc->addStyleSheet('code.jquery.com/ui/1.9.1/themes/base/jquery-ui.css');