On 9/27/07, Rob D <[EMAIL PROTECTED]> wrote:
> Hi Israel
> Check out my recently announced plugin called LinkedSelects.
> http://www.msxhost.com/jquery/linked-selects/json/
> It might be of assistance to you!
>
> Cheers
> Rob
I second this suggestion.
;)
Joel Birch.
[EMAIL PROTECTED] wrote:
Hi all,
i'm creating a search interface based on select dropdown methods.. the
user selects the option from the first menu and the second is created
dynamically using ajax. their is a third option which will be
populated based on their selection of the second dropdown.
Network Solutions just revamped their whole account manager.
Guess what library they depend on? It rhymes with Mayberry.
Looking at the code, it looks like they have a million places they SHOULD be
using jQuery, but they don't use it anywhere I can see except 1 single line:
$(document).ready(fun
That's pretty cool. Very impressive work, and your implementation is clean,
too.
On 9/24/07, Michael Geary <[EMAIL PROTECTED]> wrote:
>
>
> OK, here is the client-side undo plugin demo that I mentioned earlier:
>
> http://mg.to/znc/colortuner.html
>
>
Looking good Tane. The only changes I'd make are CSS related, but since it's
still beta I'll cut ya some slack. =P Keep up the good work.
~Sean
Hi Kevin,
Can you post a link to a test page that demonstrates the problem?
Without that, it's pretty much impossible to tell what is wrong.
-Mike
> Line: 698
> Error: 'style' is null or not an object
>
> I'm getting this confusing error with jquery-1.2.1.js, but
> only with IE. I think this
Hi Benjamin,
that is really strange. Sorry you're having problems with it. I must
admit that I haven't tested it with the latest versions of
Dimensions. I suspect that your problem might involve that, because
I've used it with jQuery 1.2 and the older Dimensions and it worked
fine. It loo
Line: 698
Error: 'style' is null or not an object
I'm getting this confusing error with jquery-1.2.1.js, but only with
IE. I think this may have something to do with applying attributes or
setting the class on a new element, but I'm not sure.
Any ideas?
Cheers,
Kevin
Hi all,
i'm creating a search interface based on select dropdown methods.. the
user selects the option from the first menu and the second is created
dynamically using ajax. their is a third option which will be
populated based on their selection of the second dropdown. however
this does not work.
Line: 698
Error: 'style' is null or not an object
I'm getting this confusing error with jquery-1.2.1.js, but only with
IE. I think this may have something to do with applying attributes or
setting the class on a new element, but I'm not sure.
Any ideas?
Cheers,
Kevin
I'd like to set the CSS fill property of an SVG object via jQuery, but
it's not
working for me. What am I doing wrong?
I'm embedding an SVG document in an XHTML-1.0 Strict page. The doc
contains an
object with a class called fr. Then I do $(".fr").css("fill",
"green") , yet
nothing happens.
Hi,
I ported a few javascript popups (ugh) to cluetip today. Works pretty
well, with the exception that I can't get the tooltips to position
themselves in a sensible way. If the link is at the bottom of the
page, the tooltip is displayed outside of the viewport. Here's the
URL:
> http://www.kof.
Danjojo wrote:
> We have Java, .NET, PHP, and CFM...
>
> What can't we do?
>
> Interact with an Enterprise database...
>
You can use JSR 223 [1] (requires Java 1.6 or above) with the Rhino JS
library and use server-side JS to speak to your DB, etc.
[1] https://scripting.dev.java.net/
i submitted a post but didn't show???
Hi,
I ported a few javascript popups (ugh) to cluetip today. Works pretty
well, with the exception that I can't get the tooltips to position
themselves in a sensible way. If the link is at the bottom of the
page, the tooltip is displayed outside of the viewport. Here's the
URL:
> http://www.kof.
I have been searching for something just like this.
I would like to get a copy of the code if possible.
Thanks
On Sep 17, 9:08 pm, "Jeffrey Kretz" <[EMAIL PROTECTED]> wrote:
> I've spend the last few days building a .NET implementation of a gzip
> packer. It accepts an argument like either of t
I ran into this problem before.
Preloading seems like a tricky setup. If you pass a list of images
into createElement with FF it will load everything and it will work
great. If you try this with IE it will keep loading the images in and
not wait till the last one was finished. Safari won't let you
Thanks, I used the following:
// change background depending on user's time
datetoday = new Date();
timenow = datetoday.getTime();
datetoday.setTime(timenow);
thehour = datetoday.getHours();
if (thehour >= 18)
$('body').addClass('evening');
else if (thehour >= 15)
$('body').
Andrea Ercolino wrote:
> Chili is now much faster than before. Try it!
>
Is it possible to configure Chili so that if a script is bigger than a
certain length, instead of automatically highlighting it a link is
displayed above it to manually trigger the highlighting?
Line: 698
Error: 'style' is null or not an object
I'm getting this confusing error with jquery-1.2.1.js, but only with
IE. I think this may have something to do with applying attributes or
setting the class on a new element, but I'm not sure.
Any ideas?
Cheers,
Kevin
I was having roughly the same error. Running the page through the w3c
validator showed me my invalid script tags. IE wouldn't load them, all
other browsers would.
You might try using either HTML 4.01 or XHTML 1.0 transitional DOCTYPE
to force IE into standards compliance mode.
Also, I believe th
On Sep 13, 11:12 am, David Duymelinck <[EMAIL PROTECTED]> wrote:
> I got arround the relative element by hiding the content of the window
> and coping it into a div outside the relative element. It's very
> restricted but maybe this is the base of the solution?
>
> http://lukoil.norbertprovoost.be
I'm getting the following error when loading jQuery (now that jQuery
is loading :)
Line: 698
Error: 'style' is null or not an object
This is inside the jquery-1.2.1.js file - is this a problem with
jQuery or IE?
Cheers,
kevin
Hmm. Yes, changing the script tag ending (and other carry-overs from
xhtml when I down-graded to html 4.01 to get IE to work) seems to have
jquery.js loading now.
My test browsers were Firefox 2, Opera 9.5 alpha, and IE 7 on Windows,
and Safari 2, WebKit nightly (Safari 3), and Shira on OS X. IE
Any ideas, I´m blocking on this. I´ve looked the code over several
times.
Thanks.
On Sep 26, 9:32 pm, voltron <[EMAIL PROTECTED]> wrote:
> I have several validation inits in a separate js file:
>
> //
> =
> // FORM VALID
Tim,
Try wrapping a try/catch around it to see if there any untrapped
error:
try {
your stuff
} catch(e) {
alert(e.message?e.message:e);
}
Also, if you are using FireFox, install FireBug debugger plugin which
will give you alot of debugging information with the ajax call.
--
HLS
On Sep 26, 4:23 am, James Dempster <[EMAIL PROTECTED]> wrote:
> I'm releasing a preview, to get some feedback on the UI.
>
> One of the things I'm struggling with is where and how I should go
> about adding support for table level filtering, the column level
> filtering seems fine. Should I simply
Sean,
Nice plugin, love its simplicity.
on IE I cant see the text area with the insertion code for the head part.
Also I found it ennoying in your exemple that its only the link that is
clickable, not the whole tab.
my 2 p feedback
-olivier
Sean Catchpole wrote:
That's great! Excellent plugin.
The filter you specified is one rule with two elements described in
it. Being firstly an element with a class attribute containing myClass
with a child anchor element. Maybe you possibly mean a.myClass meaning
an anchor element which has a myClass class attribute? As I think
filter will only apply
OHO!
I bludgeoned it into submission - and yes, my solution sucks, I'm
sure.
jQuery("#user_webmail").blur(
function(){
var un = jQuery("#user_webmail").val().split("@");
jQuery("#user_webmail,#user_pay,#user_home").val(un[0]);
}
);
Any cleaner solutions are highly appreciated. Now,
Some really good ideas there that I hadn't thought of.
Think your right about the multipule conditions that would be very awesome.
It's going to take some more time and thinking though.
Filters like ">35" using the filtertype numeric already work, but "> 35 and
<90" don't. I like your ideas and y
Hi folks,
I'm pleased to announce the public beta of my latest app, Paste Monkey:
http://cakephp.digitalspaghetti.me.uk
At the moment, this is a beta application. I'm still waiting for the
proper domain name to propagate through, but until then it's sitting
at that URL.
Paste Monkey is Yet An
Very nice, Andrea. that'll be useful.
While I was viewing the examples, I thought of something else
that would be very useful, too, when reviewing code:
A plug-in to toggle (show/hide) comments in code. I think it
would be especially useful in tutorials, as would be your color-coding.
no replies eh?
Am I looking at this the wrong way, and making it harder then it has
to be?
would a working example make it easier for people to see what I mean?
http://deshymers.com/tf2/
btw I am not a designer jsut a simple php dev, so it is probably
riddled with browser issues, and complianc
I like the looks of the UI, but when I implemented some table
filtering for my own purposes, I need more functionality. (My UI was
terrible so no help there.)
For numeric data I needed relational filters, e.g., "> 35" and
multiple filters, e.g., "> 35" and "< 90". That made the UI for adding
and
ok thanks for everyone clearing this up for me.
On 9/26/07, Joan Piedra <[EMAIL PROTECTED]> wrote:
>
> Just use the text-transform rule, and then process your string and convert
> it to uppercase via server-side. Or you could also transform it before you
> send the data with the onsubmit event.
>
That's great! Excellent plugin. I've been using it to present idTabs:
http://www.sunsean.com/idTabs/
~Sean
On 9/26/07, Andrea Ercolino <[EMAIL PROTECTED]> wrote:
>
>
>
> Chili is now much faster than before. Try it!
>
> http://noteslog.com/post/chili-19-released-today/
>
> --
> View this message
Excellent to hear! I've been using it in personal projects, so any
speed improvement is a welcome one!
--John
On 9/26/07, Andrea Ercolino <[EMAIL PROTECTED]> wrote:
>
>
> Chili is now much faster than before. Try it!
>
> http://noteslog.com/post/chili-19-released-today/
>
> --
> View this messag
That is great news Andrea, thanks.
On 9/26/07, Andrea Ercolino <[EMAIL PROTECTED]> wrote:
>
>
>
> Chili is now much faster than before. Try it!
>
> http://noteslog.com/post/chili-19-released-today/
>
> --
> View this message in context:
> http://www.nabble.com/ANNOUNCEMENT%3A-Chili-1.9-much-faster
We do that on another section of the site. Guess what? People are
still seemingly INCAPABLE of following that sort of guide. Even when
we specifically prompt for "Your Domain Name (only domain.com, not
www.domain.com)" we STILL get bloody email addresses in the input.
On Sep 26, 2:17 pm, Muesch
Chili is now much faster than before. Try it!
http://noteslog.com/post/chili-19-released-today/
--
View this message in context:
http://www.nabble.com/ANNOUNCEMENT%3A-Chili-1.9-much-faster-tf4524829s15494.html#a12909607
Sent from the JQuery mailing list archive at Nabble.com.
why you dont give a hint what the users have to input in this field:
[ ] means input field
write:
[EMAIL PROTECTED]
and dont allow a dot as input (if the dot is not used in names)
On Sep 26, 10:03 pm, Alex <[EMAIL PROTECTED]> wrote:
> I was under the impression that the masked input plugin s
i dont have the firebug plugin always disabled/deaktivated because of
the huge performance slowdown with it.
On Sep 26, 6:34 pm, "Benjamin Sterling"
<[EMAIL PROTECTED]> wrote:
> If open you xml doc in firefox and then use firebug to "inspect" an element
> it will give you the full path to that el
please right klick on the firebug icon and enable it.
On Sep 26, 8:27 pm, Danjojo <[EMAIL PROTECTED]> wrote:
> Very cool! I would like to see it.
>
> When I open the language_sheet_en.xml in FireFox and click the little
> Firebug icon but it shows a banner "Firebug is disabled"
>
> What did I do
I was under the impression that the masked input plugin simply
provides a template for entry, but every character in that template is
still submitted, so I'd still have to strip the @domain part off
before submission.
The other problem with the masked input is that it expects a fixed
width input,
> > From: kevwil
> >
> > We are using jQuery in an ajax demo. We have the whole
> > thing written, and it works in Firefox, Opera, and Safari.
> > IE gives us a blank page.
> > We have tried to debug the issue, but the jquery.js script
> > won't load. If we do not load the jquery.js script, the
I think this is called "Peek In" in PowerPoint.
You can achieve it with some combination of animate and css positioning.
I probably could whip up a demo, but it shouldn't be too hard. (I think)
Glen
On 9/26/07, Sean Catchpole <[EMAIL PROTECTED]> wrote:
>
> jQuery has native a slide effect, but I
In a former life, I worked at a startup that was doing just that. Giving
database access to server-side javascript. Worked pretty well too.
The company died during the dot-com bust, but the remnants live on as a
company called Dataweb. http://www.dataweb.com/default.view
You can sign up for the
That's not a valid script tag. You need to use:
Two suggestions:
* Check the rest of your site for any other similarly invalid script tags.
* Run your pages through the HTML validator at www.w3.org to catch problems
like these.
-Mike
> From: kevwil
>
> We are using jQuery in an ajax demo.
I have several validation inits in a separate js file:
//
=
// FORM VALIDATION
//
=
var container = $('#error_container');
$("#login_for
But doesnt $("#id1 > :text") select only the first textbox under #id1
element ?
I wanted to bind the focus function to all textboxes under id1.
But I found this plugin (http://www.texotela.co.uk/code/jquery/
focusfields/) to do what I wanted to do anyway.
jQuery has native a slide effect, but I am looking for something similar one
could call shift.
The content actually moves, not just the border.
jQuery Slide: A->AB->ABC
Shift Slide: C->BC->ABC
Is there a plugin other than interface that does this?
~Sean
Anyone have any idea why this code works in 1.1.4 and not in 1.2.1?
The header apparently does not get sent...
(using in a Ruby on Rails app where setting this head RoR responds
with the proper js template)
$.ajax({
url: event.target.href,
data
Hi,
> Actually, if you'd like to use js to access a database, may I suggest
> Adobe AIR?
Have I already expressed my dislike of AIR?
> Basically, in allows you to embed JS/HTML into an installable application,
Wow, how new. Have you ever looked at XUL? Just create an installer that
installs X
You could the masked input plugin, so that they couldn't enter periods or
@'s in the first place. It's really nice.
http://jquery.com/plugins/project/maskedinput
-- Josh
- Original Message -
From: "Alex" <[EMAIL PROTECTED]>
To: "jQuery (English)"
Sent: Wednesday, September 26, 2
Not sure, can you send me the link to the xml doc, can't recall how I did it
off hand.
On 9/26/07, Danjojo <[EMAIL PROTECTED]> wrote:
>
>
> Very cool! I would like to see it.
>
> When I open the language_sheet_en.xml in FireFox and click the little
> Firebug icon but it shows a banner "Firebug is
Situation: I've a username and password field, which I want to submit
to different systems depending on the submit button they choose. Now,
since I can't convince the programmers to edit their side of things,
that leaves me with 3 separate forms which have different input names.
I'm silently copyi
If you mean the forms plugin, then yes I am using it in a .Net app
Sharique Farooqui wrote:
>
>
> Hi,
> Did anybody has tried jquery forms with asp.net?
> --
> Sharique
>
>
>
--
View this message in context:
http://www.nabble.com/Forms-with-asp.net-tf4522863s15494.html#a12907269
Sent fr
Very cool! I would like to see it.
When I open the language_sheet_en.xml in FireFox and click the little
Firebug icon but it shows a banner "Firebug is disabled"
What did I do wrong?
On Sep 26, 12:34 pm, "Benjamin Sterling"
<[EMAIL PROTECTED]> wrote:
> If open you xml doc in firefox and then u
Both great examples!!
I can think of one other caveat at least that I am familiar with.
Using just a development computer and a web browser is there any way
to INCLUDE files so I dont have to keep editing the same navigation/
module sections in each page?
On Sep 26, 2:02 pm, "Jake McGraw" <[E
Hi Jörn, I think it works now. Do the errors which I define in the
error_container override the default ones in the plugin? Maybe it
would be cool to make this a default validator for your plugin? I
think many others might want this functionality. Thanks for looking
into this problem.
On Sep 2
Actually, if you'd like to use js to access a database, may I suggest
Adobe AIR? Basically, in allows you to embed JS/HTML into an
installable application, which allows you to move away from the
browser security model and do all kinds of crazy stuff like cross site
scripting, off-line operation an
Danjojo schrieb:
I have not missed a news flash anywhere where this is NOT the case
have I?
How about a JavaScript port of Ruby?
http://code.google.com/p/trimpath/wiki/TrimJunction
-- Jörn
Jean schrieb:
Yes, thanks for help!
http://www.interalfa.com.br/questionarios/questionario.php?cod=31
A few thinsgs:
- I don't get the error you described
- I've never tested the plugin with forms that big
- you can enable a debugging mode using the debug:true option, it helps
finding inp
We have Java, .NET, PHP, and CFM...
As developers we can do pretty much any UI we want with javascript
(jquery), css, and semantic markup...
What can't we do?
Interact with an Enterprise database...
Unfortunately at the point we need a real RDBM database backend, we
are forced to choose one of
voltron schrieb:
Thanks Mike, did not see that :-)
okay, the plugin works, but this is the error that I get from Firebug:
Could you please give the latest revision a try?
http://dev.jquery.com/view/trunk/plugins/validate/jquery.validate.js
-- Jörn
Aaron Heimlich schrieb:
Jorn,
Is there an ETA on version 1.2 of your validation plugin?
Nope, none yet. Though the latest revision is already very stable. I'll
try to release a beta/rc soon, something you can start using while the
final release has to wait for updates on demos and documentati
Sometimes, once I get started down the reusability path I think there
must be no end.
Perhaps in this case I have to draw the line.. and so the multiple
panels that independently swap out images on their set of links would
look like so.
var orgActSRC = $("#imgLinkAct").attr("src");
Does anyone know of a good one, I've used one that made a space or gap
above it and i couldn't get it to go away appropriately without
rigging css -16px margin.
Does anyone have any ideas about this?
Just use the text-transform rule, and then process your string and convert
it to uppercase via server-side. Or you could also transform it before you
send the data with the onsubmit event.
On 9/26/07, Karl Swedberg <[EMAIL PROTECTED]> wrote:
>
> It's CSS 2. But it should be this:
> input {
> text-
Okay so I have it updating my database when you click but how do I get
the callback to read in the value? I didn't see any easy solutoin for
this.
Here is the one i'm using :
http://www.learningjquery.com/2007/05/half-star-rating-plugin
Let me know if anyone knows... :)
Hi all,
I have started to use Jquery a couple month ago, and i really love the
framework.
I am currently working on an event delegation plugin, attaching
generic event to the document and applying filters to the target
element to determine if an event should be applied.
I have however noticed s
We are using jQuery in an ajax demo. We have the whole thing written,
and it works in Firefox, Opera, and Safari. IE gives us a blank page.
We have tried to debug the issue, but the jquery.js script won't load.
If we do not load the jquery.js script, the page will load
successfully.
We are using:
Hi Charles,
I´m translate the page into english too. ASAP.
I didn´t have think about the image that have a size larger than the
viewport. I need think about it.
Try the plugin, and send me your feedback.
Bye,
Leandro
On Sep 24, 4:12 pm, polyrhythmic <[EMAIL PROTECTED]> wrote:
> Looks like the
Hi Gordon,
The jQuery lightBox plugin doesn´t allow accessing HTML pages. Just
images.
Try the plugin and send me your feedback.
Bye,
Leandro
On Sep 24, 8:10 am, Gordon <[EMAIL PROTECTED]> wrote:
> Interesting lookingplugin, I'm curious though, how does it compare to
> the thickboxplugin? Doe
Thanks Rick,
The plugin can handle various sizes, vertical and horizontal. Try the
plugin and send me your feedback.
Bye,
Leandro
On Sep 24, 8:02 am, "Rick Faircloth" <[EMAIL PROTECTED]> wrote:
> Hi, Leandro... very nice plug-in.
>
> I was wondering if the plug-in display can handle various
> s
Hello group -
I have just recently stumbled on to jQuery and already I am infatuated
with the possibilities. That said, I am an obvious noob and may have
bitten off more than I can chew on a current project.
This page
http://comparemyagent.com/forms/fa_sell.cfm
is using Jorn's Validation and Acco
On Aug 21, 6:42 pm, Stephan Beal <[EMAIL PROTECTED]> wrote:
> On Aug 21, 9:58 pm, Mark <[EMAIL PROTECTED]> wrote:
>
> > This is the result I am expecting
> > --http://www.augustine.com/images/test/expected.jpg
> > . This is what I get --http://www.augustine.com/images/test/actual.jpg
> > . I
Hi all,
I have started to use Jquery a couple month ago, and i really love the
framework.
I am currently working on an event delegation plugin, attaching
generic event to the document and applying filters to the target
element to determine if an event should be applied.
I have however noticed s
I fixed it by downloading the latest JQuery.js file.
Thx for the replies though
On 26 sep, 15:06, "Weaver, Scott" <[EMAIL PROTECTED]> wrote:
> 9 times out of 10 this caused by an iframe that has no "src" attribute
> defined. I usually fix this by adding src="javascript:void(0)". I have
> heard
Cool.. works nicely.
The only downside is that I had 9 "panels" or categories that each had
their own set of links and rollover images. And now the code would not
be resusable.
Weird how functions will not recognize a variable set in another
function, is there really no way around it?
Oh I bet
Ultimately you can use jQuery as in jQuery('selector')
On 9/26/07, Wizzud <[EMAIL PROTECTED]> wrote:
>
>
>
> You probably need to look at this ...
> http://docs.jquery.com/Using_jQuery_with_Other_Libraries
> http://docs.jquery.com/Using_jQuery_with_Other_Libraries
>
>
> Tom Burns wrote:
> >
> > H
You probably need to look at this ...
http://docs.jquery.com/Using_jQuery_with_Other_Libraries
http://docs.jquery.com/Using_jQuery_with_Other_Libraries
Tom Burns wrote:
>
> Hi,
>
> Using the $ in jQuery causes problems for my setup. Our template engine
> uses $ as its token to start paying
Ah...
That's a good idea...hadn't thought about that route.
_
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Josh Nathanson
Sent: Wednesday, September 26, 2007 11:40 AM
To: jquery-en@googlegroups.com
Subject: [jQuery] Re: Building my own datepicket - limting cli
Andy, on the click event I think you would have to:
- check to see if they are toggling from off to on
- if they are, and there are already two "on" days, return false
You can do this by checking the size of the jQuery object that is returned when
selecting all "on" days (pseudo code follows):
i
If open you xml doc in firefox and then use firebug to "inspect" an element
it will give you the full path to that element and that "can" be used at the
selector.
On 9/26/07, Muescha <[EMAIL PROTECTED]> wrote:
>
>
> is there a handy XPath to CSS converter available?
>
> i like to past to the conve
Hey Shawn,
Have a look at my plugin ClockPick - you can set the time intervals as you
describe:
http://www.oakcitygraphics.com/jquery/clockpick/trunk/ClockPick.cfm
-- Josh
- Original Message -
From: "sgrover" <[EMAIL PROTECTED]>
To:
Sent: Tuesday, September 25, 2007 9:20 PM
Subje
is there a handy XPath to CSS converter available?
i like to past to the converter a XPath from the FireFox Plugin
XPather and get the CSS selector syntax.
i have:
$("a.delete").click(function() { alert("test") });
after i fetch some json data and append new html:
// on json load
$("div.items).append("test");
click events on items inserted after json data is loaded are not
working, how can i tell jquery to inspect DOM again and attach actions
on ne
is there a handy XPath to CSS converter available?
i like to past to the converter a XPath from the FireFox Plugin
XPather and get the CSS selector syntax.
On Wednesday, September 26, 2007 1:58 AM Enrique Meléndez Estrada said:
> I think the pattern would be: both multiselectors side by side, and
> arrows to left and right indicating moving options from left selector
> to the right and viceversa (instead of add and remove buttons).
>
> Also its bet
but a lot of plugins like css selectors.
having multiple selector plugins could cause a dependency nightmare.
Muescha wrote:
>
>
> maybe
>
> but i think it would be better to extract all selectors in external
> selectors pligins - so i can include the selector methods i need
>
> i dont li
Hi,
You're getting close. I think it'll work if you put the "var orgSRC"
line above the .hover() method. That way, on mouseout you're always
returning the src attribute to the same value:
var orgSRC = $("#imgLinkAct").attr("src");
//method
$(".swapImages").hover(fun
maybe
but i think it would be better to extract all selectors in external
selectors pligins - so i can include the selector methods i need
i dont like the css selectors - so i dont need it.
On Sep 25, 8:37 pm, Danjojo <[EMAIL PROTECTED]> wrote:
> Was the main reason for the removal ofXPathfrom
Sorry.. I can't go back and edit my own messages on google groups...
I understand now.
If only want mouseover behaviour then use it.
If I want more mouseover and mouseout use hover.
Although in trying to proserve the #id's original source value I
cannot get it to work
//method
So I should be using onMouseOver instead of onHover?
Thank you.
On Sep 26, 11:06 am, Danjojo <[EMAIL PROTECTED]> wrote:
> What I am trying now should work shouldn't it?
>
> $(".swapImages").hover(function(){
> var newSRC = $(this).attr("rel");
> $("#imgLin
What I am trying now should work shouldn't it?
$(".swapImages").hover(function(){
var newSRC = $(this).attr("rel");
$("#imgLinkAct").attr("src",newSRC);
}
Linear Actuators
Fun idea.. I might try that for the world of warcraft guild site I am
building.
On Sep 26, 10:51 am, "Glen Lipka" <[EMAIL PROTECTED]> wrote:
> Instead of document.write('')
> Use $("body").css("background-color","blue")
> or
> $("body").addClass("noon")
>
> I think the time part could potentially
Thanks guys, I used a mixture of both your suggestions:
var ident = String(this.name);
changed= ident.substring(0 ,ident.lastIndexOf('-')+1) + suffix;
$(this).removeAttr("id");
$(this).removeAttr("name");
this.name += changed;
this.id += changed;
$(this).attr("clone", changed);
On Sep 26,
Thanks Erik!
On Sep 26, 1:40 pm, "Erik Beeson" <[EMAIL PROTECTED]> wrote:
> This will find all descendants: $(this).find('*');
>
> --Erik
>
> On 9/26/07, voltron <[EMAIL PROTECTED]> wrote:
>
>
>
> > I am trying to get all the children of a node, apart from adding
> > ".children()" for every gener
1 - 100 of 181 matches
Mail list logo