Actually, I think I have it working now. Thanks, everyone.
> One thing that often helps in these cases is to set wmode=transparent
> in the object's params
>
> --Karl
Thanks. I think I have done that. You can see the page I am working on
here:
http://www.cmzmedia.com/enableit/template.html
and the page where it does work (but with the old-style Flash
e
I am working on a project now where I am cleaning up the code on a
certain page. I am upgrading to using the jQuery Flash plugin as part
of it. The only problem is that, once I made that upgrade, a small PNG
image that needs to be placed over the Flash now goes behind the SWF
object in the stackin
On the site I am almost finished developing at
http://www.murphytx-online.com/murphy/eating-out-american.php I am
using the "Smart Banner" jQuery script from
http://www.webresourcesdepot.com/smart-floating-banners/
This script keeps the content of the two sidebars always visible as
the visitor sc
You can use ending tags in HTML 4.01. It helps for DOM reasons to know
where an element begins and ends.
On Jul 20, 10:29 am, son wrote:
> Rob,
>
> Thanks. I have used the Transitional//EN"
> "http://www.w3.org/TR/html4/loose.dtd";> since I have deprecated
> elements.
>
> I have a question for
Is there any way to encode the value of the flashvars VALUE attribute
of the PARAM element with the standard jQuery Flash plugin?
Basically I am trying to work something like the following into my
jQuery flash code:
Thanks for the extra help, Pepperman. Yeah, I haven't perfectly
polished off all the code yet. I hardly ever put anything like
"DIV#arrow" but I guess an instance slipped through. I do try to not
use IDs if an element name will do but am fine with using IDs when
necessary.
data("currentshow"))
> .addClass("on");
>
> $this.data("currentshow", $this.data("currentshow") === hlen ? 0 :
> $this.data("currentshow") + 1);});
>
>
>
> On May 25, 5:28 pm, MauiMan2 wr
I've used the jQuery Timers plugin (http://plugins.jquery.com/project/
timers) to animate through my client's "five steps" on this page:
http://www.cmzmedia.com/irarollover/ but is there a way to get it to
continuously loop through the animation? The documentation page
(http://jquery.offput.ca/tim
implementation though the
interactive effect is not working. I am going to keep troubleshooting
it on my own but if somebody could locate the problem before I do then
that would be a big help. Thanks.
On Apr 23, 1:37 am, glyn3332 wrote:
> What's it meant to be doing?
>
> On Apr
Can anybody find quicker than I can why it’s not working on my blog?
http://ocmexfood.blogspot.com/ (the orange nav near the top)
I’m pretty sure I have all the elements in correctly. Thanks.
Thanks.
Does jQuery provide a way to append an element immediately before the
closing tag of another element? For instance, say I have the following
paragraph element:
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean
adipiscing gravida leo. In hac habitasse platea dictumst. Phasellus
aucto
Okay, the following actually works:
jQuery(document).ready(function(){
alert("Thanks for visiting!");
});
but I haven't been able to get any other jQuery commands to work,
including ones that worked on other sites then got ported over to this
Well, my jQuery tests didn't work and I thought they were very simple
but I can try an alert test.
"Have you verified if jQuery is running at all in IE6? For example,
create a new page and insert a simple jQuery action that would let you
know if it's running (such as an alert message)."
That's what I have now: a simple jQuery action and as far as IE6 is
concerned it is not there at all.
Can
That's the META tag I have in there now. Should I change it?
Basically I am trying to use jQuery to add classes to certain
elements. Works in IE7 and every other browser but not IE6. This an
example of a jQuery statement I have in place so far:
$(document).ready(function() {
$('BODY > DIV').addClass('mainDiv');
});
The CSS has certain styles tha
I have a project that is in the staging environment so unfortunately I
can't link to it but jQuery works fine in IE7 but has no effect
whatsoever on IE6. I don't know what sort of code I could possibly
change to get it to also work in IE6. Any suggestions?
I too couldn't get it to work with 1.3.
Thanks, Jack. When it is ready I will be ready to implement it. I have
no other deadline than that so work at your own pace.
So, the presence of the DD is what makes it difficult?
Okay, I'm not a total jQuery newbie but, yeah, I've gotta get this $
and jQuery stuff straight. Part of the problem is the stuff that was
already there with the WordPress template I'm using. From what I do
know about it I'm not sure that they should've put the noConflict
thing at the end of the jQ
The following code snippet:
$('OL.codeSample LI:even').addClass('even');
is working on one of my sites to zebra striping to list items but is
not working on another one even though both have jQuery 1.2.6 in
place. The site where it's not working is here:
http://developer.cmzmedia.com/?p=115
An
Yes, you've got the right idea.
I have the very rudimentary beginnings of my glossary here:
http://www.usmexfood.com/
And the code for it so far:
Glossary
Burrito
Basically it's going to be for a glossary. It'll be a food-related one
with a lot of terms related to a particular kind of ethnic food and
there'll be enough terms (and therefore numerous DT/DD pairs) that
breaking it down would be very helpful but at the same time it only
needs to be contained wi
I have a need for the listnav plugin to work for definition lists.
http://www.ihwy.com/Labs/jquery-listnav-plugin.aspx
Since the plugin breaks the lists up alphabetically it seems like it
would make the most sense for definition lists but the "Features"
section only mentions it working for order
IE7 is telling me the following script has a syntax error and I have
tried to find it but haven't located it . . . yet:
(function($){
$().ready(function() {
// validate the comment form when it is submitted
$("#commentForm").validate();
//
; })(jQuery);
>
> - Richard
>
> On Tue, Sep 16, 2008 at 5:21 PM, MauiMan2 <[EMAIL PROTECTED]> wrote:
>
> > Just wondering how I can resolve the jQuery/mootools conflict on:
> >http://www.tccnotary.com/contractorform.php
>
> > I have tried moving around the "jQuery.noConflict();" script to
> > different spots within the code but to no avail.
Just wondering how I can resolve the jQuery/mootools conflict on:
http://www.tccnotary.com/contractorform.php
I have tried moving around the "jQuery.noConflict();" script to
different spots within the code but to no avail.
I am using the Radiobutton and Checkbox-Replacement plugin (http://
www.protofunc.com/scripts/jquery/checkbox-radiobutton/) on the
following page:
http://www.tccnotary.com/contractorform.php
Can somebody figure out why it's working on the checkboxes but not on
the radio buttons? Bonus points to
Thanks. It seems to be working now.
I am starting to learn jQuery now and have added a couple effects
(table sorter and whatnot) so far to my blog at: http://ocmexfood.blogspot.com/.
One thing I want to do with it is to turn off certain page elements if
the current URL equals a certain string. For example: I have a number
of differe
33 matches
Mail list logo