Hi
Stephan
Thanks for that it now works like a charm
Duncan
On Feb 2, 9:43 pm, Stephan Veigl wrote:
> Hi,
>
> that's a feature of the event bubbling in jQuery 1.3
> You need to call stopPropagation().
>
> $('li:not(:has(ul))').css({
> cursor: 'default', 'list-style-image': 'none'
>
Hi,
that's a feature of the event bubbling in jQuery 1.3
You need to call stopPropagation().
$('li:not(:has(ul))').css({
cursor: 'default', 'list-style-image': 'none'
})
.click(function(event) {
event.stopPropagation();
return true;
On 6/28/07, aDeviKreates <[EMAIL PROTECTED]> wrote:
$(document).ready(function() {
$('div.demo-show > div').hide();
$('div.demo-show > h3').click(function() {
$(this).next().slideToggle('fast');
});
aDeviKreates wrote:
Unfortunately, I don't have a live site to look at. This is an
intranet site right now. Is there any other information I can provide
that might help?
I can't tell enough from the code supplied. Probably the best bet would
be to create as simplified a test version of thi
Unfortunately, I don't have a live site to look at. This is an
intranet site right now. Is there any other information I can provide
that might help?
On Jun 28, 10:28 am, Scott Sauyet <[EMAIL PROTECTED]> wrote:
> aDeviKreates wrote:
> > I can get this to work halfway, showing the group of Produ
aDeviKreates wrote:
I can get this to work halfway, showing the group of Products and when
I click on the Product it does display the list of Categories for that
Product. However, I am stuck here. I cannot get it to when I click
on the Category this list of items is displayed.
Do you have a
6 matches
Mail list logo