Jon,
if you apply a background color to #nav ul ( for debugging purposes)
the reason for the picture of the bagman shifting downwards becomes
apparent, (check the difference between FF & IE)
and presents you with a nice easy solution
apply a width to #nav uland the problem you have desc
Changing opacity affects all child elements. To only fade the "background"
just don't have the foreground be a child of it. You could use absolute or
relative positioning or negative margins or floats.
--Erik
On 9/6/07, howa <[EMAIL PROTECTED]> wrote:
>
>
> Hi,
>
> The following code will fade t
Hi,
The following code will fade the logo, instead of bg, e.g.
http://jqueryjs.googlecode.com/files/
jquery-1.1.4.pack.js" >
#bg{ width:600px; height:600px; background-color:blue; }
jQuery(document).ready(function() {
Hi Lewis,
This sort of menu can be created by using the Superfish plugin. Have a
look the example at:
http://users.tpg.com.au/j_birch/plugins/superfish/all-horizontal-example/
and then read up about the features at
http://users.tpg.com.au/j_birch/plugins/superfish/ . You can take
everything from
Oh, so jealous out here on the West Coast. I too, have a couch, but no
jQ Con.
Lol jQ... The gentleman's framework.
Charles
On Sep 6, 8:29 am, "Andy Matthews" <[EMAIL PROTECTED]> wrote:
> Wish I could go...thought I might be able to, but my wife reminded me of a
> commitment I have for that wee
Yes, I was advocating simplicity of markup and simplicity of code.
Speed on a page like this is sort of meaningless. (8ms or 38ms - neither of
which is slower than an eye blink)
Even so, I would say 5 ID calls might be slower than 1 class call calling 5
objects. Its certainly uglier in the code.
> From: ldexterldesign
>
> regarding your second point about using classes instead of
> IDs in my XHTML, i agree, but i am under the impression that
> warranting the use of classes on elements should only occur
> if you plan to re-use the object, otherwise ID it - i stand
> by this ethos, but
Hi all!
I'm experiencing a weird behavior in IE6 when I use slideDown().
An example can be seen @ www.bookevent.dk/CayesWeb/ click on a li element
in the menu (click on the first nested li, "BAGMAN" if you loose the
picture).
When an ul element slideDown my slides down as well. I
have tested wit
excellent - thanks Mike!
malsup wrote:
>
>
> You could do something like this:
>
> $('div.containerClass').each(function() {
> var p = this.parentNode;
> $(this).cycle({
> fx: 'scrollHorz',
> speed: 'slow',
> timeout: 0,
> next: $('a.next', p),
Glad we could help.
The code I whip up is meant to be used, so go for it.
All I ask in return is good karma.
Oh, and if you feel that jQuery saved you time and money, always consider a
small donation to the project. (I think Rey might have set up a "donate and
get a mug" program)
Glen
PS. Digg
nice one renaud,
glen and yourself have been really helpful. i originally set out on
this project to do the nav in pure CSS utilising remote rollovers, but
resorted to JQ after half a day of trying to set the damn thing up. i
don't quite have the time to look properly at how you've done your
nav,
glen, you're a star. thanks mate.
do you mind if i use that little snipped of code on this project? i've
compared the JQ pieces side by side and see what you mean about
eliminating 90% of my code (i believe you're referring to my JQ here
and not my CSS). like you say getting used to the DOM takes
You could do something like this:
$('div.containerClass').each(function() {
var p = this.parentNode;
$(this).cycle({
fx: 'scrollHorz',
speed: 'slow',
timeout: 0,
next: $('a.next', p),
prev: $('a.prev', p)
});
});
Mike
On 9/6/07, rol
DOH, yes
thanks for the catch, my bad for doing a half-hearted tweak on another
persons code. I definitely confused slice and splice when putting
that on there!
On Sep 6, 4:28 pm, "John Resig" <[EMAIL PROTECTED]> wrote:
> > line - 903
> > old: var ele =
> > jQuery(this.col.root.headerRows[0]).c
If you know it's always going to be an "a" element, maybe this would work:
switch (event.target.className) {
case 'close':
do stuff
break
case 'continue':
do stuff
break
etc.
-- Josh
- Original Message -
From: "gr00vy0ne" <[EMAIL PROTECTED]>
To: "j
Not unless you're able to scoop out my brain and moosh it into code form :-)
The only animation bit that's landed is the scrollLeft/scrollTop
animations. All of the rest is still in the works.
Here's a nightly that you can use, if that interests you:
http://code.jquery.com/jquery-nightly.js
--J
Playing with the wonderful Cycle plugin. Rather than using container ID's and
having specific options for each, I want to use the same settings for
multiple containers of the same class. In other words, rather than:
$('div#containerName').cycle({
fx: 'scrollH
It'd help if you said what you tried and failed with.
Are you modifying the Javascript, or the stylesheet?
On 9/6/07, JGiotta <[EMAIL PROTECTED]> wrote:
>
>
> I'm trying to manipulate jCarousel in order to support slightly larger
> image dimensions, but the item widths continue to be 77px.
>
> Any
I have problems using the Accoridion plugin with IE6, everything works
as expected on FF but IE6 "flashes" and misbehaves. Here is the page:
http://www.nhytro.de/apache2-default/template/test.html
Does someone have an idea?
Thanks
Unless it's something complicated, CSS is usually the way to do it and
avoid scripting altogether. Note that you can change more than one
element's style using a little CSS trick:
a:hover {
/* change the A tag style */
}
a:hover span {
/* change the SPAN inside the A, including the A style
> > have another look if you'd be so kind (and anyone else that happens to
> > check out this topic tonight) and see if you can think of/suggest a
> > solution to the problem of my secondary nav disappearing before i get
> > the chance to select a
> > link:http://www.personal.leeds.ac.uk/~scs4ll/
Is there a way to obtain a build of the current revision of jQuery 1.2
without building it myself? I have a use for some of the animation
additions in 1.2, and would like to be able to publish a few things as
soon as it's officially released.
Thanks folks!
I'm trying to manipulate jCarousel in order to support slightly larger
image dimensions, but the item widths continue to be 77px.
Anyone have any guidance on how I can achieve this goal?
Newbie question...
Does the switch statement work with event.target?
For instance, I have the following condition in my script:
if ($(event.target).is("a.close") {
$("#popup_layer").hide(); }
else if ($(event.target).is("a.continue") {
// do something else }
...
I actually have a few mor
On Sep 6, 2007, at 4:20 PM, Klaus Hartl wrote:
traunic wrote:
BTW, just to give an example of the ease of "upgrade": changes to
file
jquery.tableFilter.js
line - 487
old: target = jQuery(target).children('ul').eq(0);
new: target = jQuery(target).children('ul').slice(0,1);
To make it work
I whipped up a demo.
http://www.commadot.com/jquery/hoverIntent/menu.htm
Some pointers:
1. You only need one ready block. No need to make one for every single
call.
2. Use CSS classes. Avoid ID's. jQuery is much easier to work with when
your page has no ID's on it. CSS is super powerful. jQue
> line - 903
> old: var ele =
> jQuery(this.col.root.headerRows[0]).children().eq(this.col.index);
> new: var ele =
> jQuery(this.col.root.headerRows[0]).children().slice(this.col.index,
> 1);
This would actually be:
var ele = jQuery(this.col.root.headerRows[0]).children().slice(this.col.index,
t
traunic wrote:
BTW, just to give an example of the ease of "upgrade": changes to file
jquery.tableFilter.js
line - 487
old: target = jQuery(target).children('ul').eq(0);
new: target = jQuery(target).children('ul').slice(0,1);
To make it work both in jQuery 1.1.3 and 1.1.4+ try:
target = jQue
BTW, just to give an example of the ease of "upgrade": changes to file
jquery.tableFilter.js
line - 487
old: target = jQuery(target).children('ul').eq(0);
new: target = jQuery(target).children('ul').slice(0,1);
line - 494
old: target = jQuery(target).children('ul').eq(0);
new: target = jQuery(ta
ok. I modified =>
it's ok?
but using .slice() is possible?
I'm getting a 'Permission denied' error in IE6 when a jQuery 1.1.4 is
loading. When I swap back to 1.1.3.1, it loads properly and page works
fine. It works in Firefox with both libraries.
IE's error prompt shows the following info:
Line: 359
Char: 4
Error: Permission denied
Code: 0
but, when I
also is there any way to make my jquery code a bit leaner? i assume
that's really sloppy code there??!
On Sep 6, 8:06 pm, ldexterldesign <[EMAIL PROTECTED]> wrote:
> right guys, hopefully you're still about and can provide some back-up
> on this one.
>
> i've taken into consideration and implemen
right guys, hopefully you're still about and can provide some back-up
on this one.
i've taken into consideration and implemented both points, although i
have the funny feeling doing both has cancelled each of your much
appreciated solutions out. my code is much leaner, cleaner, and valid
- so pat
;)
yeah, got that
but the plugins are not up to the nightlies, so, the IE7 issue is
resolved but any code I did not write personally (i.e. tableFilter) is
having eq issues lol
Fortunately I am just doing some POC testing at the moment so it is
not a show stopper. As long as the initial iss
I agree using CSS is good IF the thing you are hovering over is an tag.
Many times you want to do something a little more complex, like hovering
over a or tag.
Also, the hover tag is useful to make hover on element A affect the look of
elementB.
$("p").hover(function(){
$(this).addClass("hove
Glen Lipka schrieb:
This seems like massive overkill to me. What's wrong with the hover
function in the core API?
and how would that look like ?
as i already said: if you plan wisely i think all you need is css.
just wanted to give an understandable example.
micha
traunic wrote:
confirmed fixed in jquery-nightly.pack.js (although a previously
working .eq(0) now tosses an error ;)
eq() has been deprecated (but not yet removed) in jQuery 1.1.4 and as
we're aproaching jQuery 1.2 it is replaced with slice(). Use slice(0, 1)
instead of eq(0).
http://jque
I just wrote something like that for a friend. It assumes that your images
are named like so:
test_off.jpg // the off state
test_on.jpg // the hover state
Just put a class of "ro" on any img tag and you're golden
$(document).ready(function(){
$('img.ro').hover(function(){
img
This seems like massive overkill to me. What's wrong with the hover
function in the core API?
Glen
On 9/6/07, Michael Stuhr <[EMAIL PROTECTED]> wrote:
>
>
> howa schrieb:
> > Something like what dreamweaver provide, are there such as plugin in
> > jQuery?
> >
> > Thanks.
> >
> >
> function onMou
i thought there was something like extending it with jquery...
thanks anyway
On Sep 6, 7:52 pm, "[EMAIL PROTECTED]"
<[EMAIL PROTECTED]> wrote:
> you need () to actually execute your callback function.
>
> function myFunction(param1, callback) {
> alert(param1);
> callback();
>
> }
>
> how does th
Thanks I will check this out!
Seems like im on the correct track then.
Will update this posting to let others know how I progressed!
Benjamin Sterling wrote:
Angelo,
That would be how I would do it and all you need to add to the list
depends on a few things:
You may want to do something l
confirmed fixed in jquery-nightly.pack.js (although a previously
working .eq(0) now tosses an error ;)
On Sep 6, 1:26 pm, "John Resig" <[EMAIL PROTECTED]> wrote:
> That's correct - this has been fixed in jQuery SVN. I just pushed a
> new nightly out containing this revised
> code:http://code.jqu
Hi,
I apologize for the long post. I have been working on this for hours
and I dont know where to turn to...
I am working on a task list of sorts. Ungrouped Tasks are listed
individually at the top, followed by task groups:
Here is relevant html:
you need () to actually execute your callback function.
function myFunction(param1, callback) {
alert(param1);
callback();
}
how does this relate to jQuery?
On Sep 6, 10:28 am, Equand <[EMAIL PROTECTED]> wrote:
> hi guys,
> i think this is a simple question
> how do i create a call back functi
owen schrieb:
Superfish and jdMenu, but those are triggered on hover. Clickmenu
looks good, except it doesn't seem to like having a link in the top-
level menu item.
Hi Owen,
thanks for reporting the bug in clickMenu! It's changed now. Opening the
link instead of the menu really wasn't the e
howa schrieb:
> Something like what dreamweaver provide, are there such as plugin in
> jQuery?
>
> Thanks.
>
>
function onMouseOver ()
{
var file = $j(this).attr("src");
var filetype = file.substr(-4);
file = file.substr(0, file.length - 4);
$j(this).attr("src",
On Sep 6, 2007, at 8:09 PM, howa wrote:
Something like what dreamweaver provide, are there such as plugin in
Not exactly a plugin but check the second code snippet in this page:
http://www.appelsiini.net/2007/6/sequentially-preloading-images
--
Mika Tuupola
http://www.appelsiini.net/
On Sep 6, 4:50 am, Klaus Hartl <[EMAIL PROTECTED]> wrote:
> Pops wrote:
> > Sorry if I am a dounce, but I still don't see the invalidity of it.
>
> > Do you have an example to show how this is incorrect in relationship
> > to anything (DOM? CSS?) ?
>
> ul and ol elements may only have li element
In general, you dont need a plugin for this. Check the API for hover.
$("p").hover(function(){
$(this).addClass("hover");
},function(){
$(this).removeClass("hover");
});
This can achieve your goal in alot of ways. The CSS class could have an
image-sprite background.
See my examples here. l
The bug for the interface sliders that shows up in IE when you use
Jquery 1.1.3
is able to be fixed. I'm using sliders with the latest jquery library.
Line 223 in islider.js (from the Interface plugin source)
Change it from:
if (toDrag.length == 1)
{
toDrag.Draggable(params);
}
else {
Hi,
Say you have a table with 5 columns. How, if it's possible, could I
set up the table sorter to ALWAYS sort on the column you click on AND
the first column?
In other words, the first column is always included in the sort.
Many thanks for such a fabulous Plug-In.
Mike
hi guys,
i think this is a simple question
how do i create a call back function
e.g. i have a funciton
dgo (href)
{
alert(href);
}
how to create a callback function?
this doesn't work
dgo(href, s)
{
alert(href);
s
}
That's correct - this has been fixed in jQuery SVN. I just pushed a
new nightly out containing this revised code:
http://code.jquery.com/nightlies/jquery-nightly.js
--John
On 9/6/07, traunic <[EMAIL PROTECTED]> wrote:
>
> Just want to confirm that others are having this problem.
>
> $("body").ap
Why are you nesting appends like that?
You might be interested in the FlyDom plugin. It does this sort of thing
easier.
http://jquery.com/plugins/project/FlyDOM
He has examples on this page:
http://dohpaz.mine.nu/jquery/jquery.flydom.html
It shows specifically the creation of a table.
Glen
On
Rollover button (image),
i.e.
the classifcal MM_rollOver() & MM_preloadImage() functions replacement
using jQuery.
On 9月7日, 上午1時22分, "Glen Lipka" <[EMAIL PROTECTED]> wrote:
> Could you be a little more specific?
> Maybe show a page that has the kind of effect you are looking for?
>
> I think
Could you be a little more specific?
Maybe show a page that has the kind of effect you are looking for?
I think the answer is Yes, but you need to be more specific, there are alot
of different variations.
You may not need a plugin at all.
Glen
On 9/6/07, howa <[EMAIL PROTECTED]> wrote:
>
>
> Som
Also just tried it with http://code.jquery.com/nightlies/jquery-nightly.pack.js
and got the same result as 1.1.4
On Sep 6, 1:19 pm, traunic <[EMAIL PROTECTED]> wrote:
> Just want to confirm that others are having this problem.
>
> $("body").append(
> $("").append(
> $("").
Just want to confirm that others are having this problem.
$("body").append(
$("").append(
$("").append(
$("").append(
$("").html("hello world")
)
)
)
);
Using jQuery 1.
Something like what dreamweaver provide, are there such as plugin in
jQuery?
Thanks.
So i've noticed that when trying to use the zebra widget with the
pager plugin, i get inappropriate behavior. Specifically, it stripes
properly on startup, and you can page through and it's still striped
properly. But as soon as you *resort* a paged table, the stripes are
no longer consistent exce
There's actually a jQuery plugin for what you're doing...it's called
jHeartbeat. It periodically pings the server to keep a connection alive, but
I'm sure it could also perform other actions.
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Angelo
$('[EMAIL PROTECTED]').val(10);
Muhammad Mohsin wrote:
>
>
> is there any thing like doucment.formname.hiddenvaible.value=10 in
> jquery
>
>
>
--
View this message in context:
http://www.nabble.com/hidden-varible-tf4391244s15494.html#a12526177
Sent from the JQuery mailing list archive a
Angelo,
That would be how I would do it and all you need to add to the list depends
on a few things:
You may want to do something like:
//inside you ajax
if(THERE IS NEW IMAGE){
var td = $('').appendTo('table'); // or prependTo('table');
// maybe append a notice that a new image is loading
var n
You can try ...
1. changing $('p.sc1').css('top','60px'); to $('p.sc1').css({top:60}); and
2. going up to jQuery v1.1.4
Dragondz wrote:
>
>
> Hi everyone
>
> I made a recent website and add it some very simple javascript
> features using Jquery (I am glad to tells you that Jquery had been
>
Hi all
This is more of a general question but is linked to JQuery.
Here is the scenario:
I have an image gallery and while users are viewing the gallery a new
image is added. I want to be able to dynamically show the new image to
the user if they are on the last page.
So basically my though
Quickly looking at the sources, what they do is having one
'pageloading' div, and one 'real body' div.
The real body div is hidden by default by css. Once you've done all
your initialization stuff you can just hide the pageloading div and
show the real body.
Regards,
Renaud Drousies
On 6 sep, 0
On 6 sep, 09:02, GianCarlo Mingati <[EMAIL PROTECTED]>
wrote:
> ok, it is better to have the images in an array, and then construct
> the list.
> But is there a way with jquery of changing the order of a list?
> GC
Here is the jQuery method version:
jQuery.fn.extend({ scramble : function() {
Sorry Klaus, but while that works for IE6, it doesn't for IE7 (v7.0.5730.11).
I've put the demonstrator back - http://www.wizzud.com/tester
http://www.wizzud.com/tester - displaying compatMode and with html border
set to '0px none'.
If you're running in quirks mode (no doctype) this isn't a pro
Wish I could go...thought I might be able to, but my wife reminded me of a
commitment I have for that weekend.
andy
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of John Resig
Sent: Thursday, September 06, 2007 10:10 AM
To: jquery-en@googlegroup
Fixed!
On 9/6/07, Geoff Buesing <[EMAIL PROTECTED]> wrote:
>
> The link to "dev mailing list" here: http://dev.jquery.com/wiki
>
> ...goes to here: http://jquery.com/mailman/listinfo/dev_jquery.com
>
> ...which gives a "Not Found" error.
>
> Should this link instead be pointed here:
> http://gro
Well, I'm not sharing that couch with anyone! ;)
Rey...
John Resig wrote:
The jQuery conf will be free - we're trying to get everything (venue,
food) sponsored. If worse comes to worse, I have an couch that someone
can crash on - if that's the only thing preventing you from coming.
The Ajax E
> Yikes...you weren't kidding about it not being free. That's quite a steep
> price for only 3 days.
Actually, they just added a fourth day. Tuesday will be tutorials, Wed
- Fri will be talks. I'm going to be giving one tutorial (on
JavaScript Libraries), three talks (The Future of JavaScript,
Be
Thanks i'll try that and report back.
I want to use such function as an option for my slideViewer plugin
wich basically creates a way to slide a set of images contained in an
unordered list.
Since the list is static (the first one is the first you see in the
gallery) i thought it would be nice to
Yikes...you weren't kidding about it not being free. That's quite a steep
price for only 3 days.
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of John Resig
Sent: Thursday, September 06, 2007 9:41 AM
To: jquery-en@googlegroups.com
Subject: [jQuer
Hello,
I have the following problem, I hope JQuery may help. I will firstly
introduce the JavaScript problem.
I register a mutation listener on a DIV element. When a node is
inserted to the DIV I use the event object passed to my listener to
retrieve the node inserted. It could look like this
Hi everyone
I made a recent website and add it some very simple javascript
features using Jquery (I am glad to tells you that Jquery had been
chosen by Textpattern CMS dev team to be the standard javascript
library).
here is the code:
$(document).ready(function() {
$('p.sc1').animate({
Hi Joel,
Thanks so much for you help. Its working great.
Cheers
Mark
On 6 sep, 09:02, GianCarlo Mingati <[EMAIL PROTECTED]>
wrote:
> ok, it is better to have the images in an array, and then construct
> the list.
> But is there a way with jquery of changing the order of a list?
> GC
Here is a idea. That's a function based on the fisher-yates shuffle
(thanks to per
The link to "dev mailing list" here: http://dev.jquery.com/wiki
...goes to here: http://jquery.com/mailman/listinfo/dev_jquery.com
...which gives a "Not Found" error.
Should this link instead be pointed here:
http://groups.google.com/group/jquery-dev
?
The jQuery conf will be free - we're trying to get everything (venue,
food) sponsored. If worse comes to worse, I have an couch that someone
can crash on - if that's the only thing preventing you from coming.
The Ajax Experience, on the other hand, is definitely not free.
--John
On 9/6/07, Andy
On 6 syys, 15:50, Karl Swedberg <[EMAIL PROTECTED]> wrote:
> You should be able to do that using event.target. Try this:
>
> $('ul').one('click', function(event) {
>if ( !$(event.target).is('a') ) {
> // your code here
>}
> });
This is normal bubbling and should be used more :)
But
Is there a cost for the conference itself? Obviously there'd be a cost
associated with travel and lodging, but I'm specifically referring to the
conf itself.
andy
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of John Resig
Sent: Thursday, Septem
I forgot to mention but if you, or your company, is interested in
sponsoring this event, please contact me. We're generally looking for
a couple hundred dollars to help defray the cost of food - and if we
get enough, t-shirts for those who attend.
--John
On 9/6/07, John Resig <[EMAIL PROTECTED]>
On Sep 6, 2007, at 4:55 PM, Dan Atkinson wrote:
Am I right in assuming that this plugin would be redundant if the JS
was loaded at the bottom of the page?
I'm asking because several of my sites, I don't put JS files in the
head for performance reasons.
Quick test shows this seems to be the
Hi Everyone -
We're going to be having the first all-day jQuery mini-conference
October 27th, here in Boston, MA. Already, a large portion of the
jQuery team will be attending and giving talks - so if you're
interested in meeting some of the people who've helped to make jQuery
possible and chatti
On Sep 6, 2007, at 9:16 AM, Wizzud wrote:
Found the solution here -
http://ajaxian.com/archives/javascript-tip-cross-browser-cursor-
positioning
http://ajaxian.com/archives/javascript-tip-cross-browser-cursor-
positioning
- not that anyone seems to give a !
Oh, I give lots of ... !
I
Am I right in assuming that this plugin would be redundant if the JS
was loaded at the bottom of the page?
I'm asking because several of my sites, I don't put JS files in the
head for performance reasons.
On Sep 3, 11:15 am, Mika Tuupola <[EMAIL PROTECTED]> wrote:
> Little something I worked on
Hi!
Just a short question, has anyone seen a jquery example of a
pageloader? What I'm looking for is the functionality that for example
netvibes.com uses. That you'll get a message saying that the page is
loading whilst it's...ehumloading ;)
/Simpel
Wizzud wrote:
Found the solution here -
http://ajaxian.com/archives/javascript-tip-cross-browser-cursor-positioning
http://ajaxian.com/archives/javascript-tip-cross-browser-cursor-positioning
- not that anyone seems to give a !
Reported as bug : http://dev.jquery.com/ticket/1571
http
Found the solution here -
http://ajaxian.com/archives/javascript-tip-cross-browser-cursor-positioning
http://ajaxian.com/archives/javascript-tip-cross-browser-cursor-positioning
- not that anyone seems to give a !
Reported as bug : http://dev.jquery.com/ticket/1571
http://dev.jquery.com
ok, it is better to have the images in an array, and then construct
the list.
But is there a way with jquery of changing the order of a list?
GC
On Sep 6, 11:47 am, GianCarlo Mingati <[EMAIL PROTECTED]>
wrote:
> HI all.
> If possible i would like to have some advice on how to randomize the
> ord
Hey Joel,
You should be able to do that using event.target. Try this:
$('ul').one('click', function(event) {
if ( !$(event.target).is('a') ) {
// your code here
}
});
Untested, but should work.
--Karl
_
Karl Swedberg
www.englishrules.com
www.learningjquery.com
On S
You can find demos here:
http://www.malsup.com/jquery/corner/
Look for the "Adornment" section.
Mike
On 9/6/07, stef <[EMAIL PROTECTED]> wrote:
>
> adding rounded corners works great. im now trying to add a border that
> follows the curves of the corners. the code below adds the border but
>
It's because of the direction of bubbling. You can't capture the event
on the way "down" the parents to the children. You can only capture it
on the way "back up", from children to parents. So your event will hit
the child (link) before the parent (list).
Technically you could capture it on the t
I could not get the editor to show up in the designated textarea, it
was just empty. When I removed all references to Jquery and the
plugins I am using, the editor shows up.
thanks
On Sep 6, 6:40 am, "Erik Beeson" <[EMAIL PROTECTED]> wrote:
> Define "work with". Does something about it keep it f
You're right. There isn't any technical problem at all, but it is a design
decision the HTML designers made, for simplicity or whatever other reason.
In the HTML specs, elements are only allowed children elements:
http://www.w3.org/TR/html401/struct/lists.html#edef-UL
As mentioned, most browsers
Hi, now i've found a solution, which removes only the inline-style-
property »filter«. :-)
i've changed
$('#test').show('slow', function() {
$('#test').css('FILTER', '');
$('#test')[0].style.filter = '';
});
to
$('#test').show('slow', function() {
document.all.test.style.removeAttribute("
Exactly. It is a subtle point, but lists do not contain other lists, they
contain items which may be lists.
On 9/6/07, Karl Rudd <[EMAIL PROTECTED]> wrote:
>
>
> He's referring to how lists (UL and OL) are built up in the DOM (from
> the HTML). Lists can only have LI elements as children.
>
> So t
is there any thing like doucment.formname.hiddenvaible.value=10 in
jquery
I have links in an unordered list and want to do
$('ul').one('click',fn); without having the links inside the ul
respond to that first click. Can it be done? How?
I tried doing e.preventCapture inside fn. No worky. Either does return
false, and I think I tried all of the other similar methods suc
1 - 100 of 114 matches
Mail list logo