I am trying to get this function work, and it does everything it
should EXCEPT reattach the event handlers (which is the whole in using
livequery!). Any ideas?
$j(".versions").livequery('change', function() {
var verid = $j(".versions option:selected");
var prodid = $j(this).attr('i
Hoping for some help still... I see the jQueryUI site has drop downs
that do what I want, there has to be a plugin or an easy way to do
this somewhere! I don't mind if i have to implement a new, full toggle
script to do it either.
On Oct 7, 8:53 am, Gremlyn1 wrote:
> Bump?
>
> On
Bump?
On Oct 5, 3:19 pm, Gremlyn1 wrote:
> Sure, as I said I have the following function in place:
> $j(document).ready(function() {
> $j('#answerbox').hide();
>
> $j('a.faq').click(function() {
> var faq_id = $j(this).attr('id');
Try:
var $j = jQuery.noConflict();
Then you would use:
$j(document).ready(function() {
doSomething();
});
On Oct 5, 2:14 pm, Dennis Madsen wrote:
> I'm trying to use jQuery inside a CMS which use mootools - therefore I
> use noConflict.
> I have this sample code:
>
>
mes wrote:
> Could you post your relevant HTML also with some kind of sampleimage
> src and what you would like it to look like after it's been toggled?
>
> On Oct 2, 6:26 am, Gremlyn1 wrote:
>
> > I have some divs I am toggling and there is a little + signimageI
> >
I have some divs I am toggling and there is a little + sign image I
want to change to a - sign image when the toggle event occurs, but
can't quite figure it out. Here is the toggle code I have (taken from
a helpful post on here):
$j(document).ready(function() {
$j('#answerbox').hide();
$
6 matches
Mail list logo