I think the below is a great idea. Posts to the list don't always work. As
an example, I am a web developer with very low JavaScript ability, so a lot
of what passes by on the list is incomprehensible, ..but some is sinking in
by osmosis I think ;).
There are more than a few plugins I'd lik
Anybody knows how to add a rotate function (e.g. google rotate for
jquery) into current Imagebox in Interface 1.2?
Hey Glen,
div.foo.bar {} works perfectly in IE6, IE7, and FF.
Beware of this CSS syntax does in IE6 (I'm not referring to the
jQuery selector of course; just the pure css selector). I've had
quite a few problems with it in the past.
I started putting together a test page to show you some
Helloes,
I have a little thingie that clones text from an input into a div:
http://ruphus.com/code/jquery/clonetype/clonetype.html
Seems to work fine, except when I try to backspace away the entire
text in the input -- the final letter refuses to vanish from the div,
even though it's not in the
If you div doesn't have an id, give it one.
You'll do this:
$('#mydivid').load(urlwhereyourcontentis);
http://docs.jquery.com/Events#load.28_fn_.29
or if it's specific content that you know:
$('#mydivid').html('my content');
http://docs.jquery.com/DOM/Attributes#html.28.29
or if it's only tex
Hi John and folks,
On the topic of spreading the word, what about some sort of job board
on the jQuery site? Seems to me that it might be a good thing for the
community -- especially if there was some option for clients to allow
code that they sponsor to be released under a reusable license.
Jus
Oh. guess i should do a little research :)
On 5/4/07, John Resig <[EMAIL PROTECTED]> wrote:
It's funny that you should say that because the jQuery mailing list is
the largest JavaScript mailing list out there (averaging over 100
posts/day). The next closest is Dojo at only about 60 posts/day.
Am I just going the wrong way? Should I switch to normal loop, or an
each loop? Comments?
$(".a")
.each(function(i){
$(this).wrap(''">')
.removeClass().addClass("z");
});
Here's my attempt. It works. Is there a better/different way, perhaps
not using the each, but simply chain
[EMAIL PROTECTED] wrote:
Hi,
With regards to the tabs plugin (http://stilbuero.de/jquery/tabs/
#fragment-13), I want to use the AJAX functionality to load content
based on what tab is clicked. I understand content is loaded
automatically from the specified URL, but once it is loaded, how do I
Jörn Zaefferer wrote:
Sam Collett schrieb:
$('.a')[0].className should work
That doesn't explain why .attr('class') should not work. I've given that
a quick try and I have no problems, it returns both classes.
Looks like my test case wasn't specific enough. When more than one
object matc
Hi folks,
I've got a problem with the corners plugin where sometimes in IE (not
always), it will do this:
If the image above is missing click here to see it.
Any ideas?
Thanks,
Chris
--
http://www.cjordan.us
Hello,
I have just the exact same question.
Trying to integrate it with a joomla template, just like the one already
done with mootools.
Regards, Mikael.
On 5/4/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
Hi,
With regards to the tabs plugin (http://stilbuero.de/jquery/tabs/
#fragment-1
It's like easy flash looking at the quickstart tutorials, the
videobrush was a real eye-catcher.
But i'm wondering is it possible to provide a container for the
silverlight javascript functions so that the silverlight code can stay
together or should it be witten like this
$(function() {
$('
Mike Alsup schrieb:
I just posted a small plugin for creating unobtrusive Silverlight
objects using the Silverlight 1.0 beta. You can find the source and
some documentation here:
http://malsup.com/jquery/ag/
Cool stuff Mike! Hadn't heard of Silverlight yet. Manually installing
the plugin wor
On 5/4/07, Glen Lipka <[EMAIL PROTECTED]> wrote:
div.foo.bar {} works perfectly in IE6, IE7, and FF.
Holy Cow! Basic regular CSS. How did I not know this? How have I gone
so long and not known this?
This is HUGE. I have spent so many hours working around this problem. My
god. I am doofus!
On 5/4/07, Glen Lipka <[EMAIL PROTECTED]> wrote:
One question. Two answers here: It is Valid and it is NOT valid. Which
is the truth? It seems unorthadox to put an ID on an HTML tag, but I don't
see why it should be avoided if needed. (in rare circumstances)
Not sure if you meant me. I don
Hi,
With regards to the tabs plugin (http://stilbuero.de/jquery/tabs/
#fragment-13), I want to use the AJAX functionality to load content
based on what tab is clicked. I understand content is loaded
automatically from the specified URL, but once it is loaded, how do I
get a reference to the HTML
Hey everyone!
This is the first time i'm using JQuery, and i'm having big trouble
trying to make it work.
Before JQ, i had scriptaculous and prototype running my site, but i
need JQ to detect the user's resolution, so i could give him the
proper background.
But now, my old function that made my c
I just posted a small plugin for creating unobtrusive Silverlight
objects using the Silverlight 1.0 beta. You can find the source and
some documentation here:
http://malsup.com/jquery/ag/
Mike
But did it have to be in the first 10 seconds?
- jake
On 5/4/07, Benjamin Sterling <[EMAIL PROTECTED]> wrote:
What do you expect? He is a programmer... I think you are required to
turn in your sense of humor and get a certified programmer upgrade. But
that is just my theory.
--
Benjamin S
What do you expect? He is a programmer... I think you are required to turn
in your sense of humor and get a certified programmer upgrade. But that is
just my theory.
--
Benjamin Sterling
http://www.KenzoMedia.com
http://www.KenzoHosting.com
Wow, totally lost the audience with the Blair Witch Project joke
Sorry to ruin it for anyone.
- jake
On 5/4/07, Benjamin Sterling <[EMAIL PROTECTED]> wrote:
Guys and Gals,
Can across this video and thought you would find it interesting and
educational.
http://video.yahoo.com/video/play?v
Guys and Gals,
Can across this video and thought you would find it interesting and
educational.
http://video.yahoo.com/video/play?vid=cccd4aa02a3993ab06e56af731346f78.1710507
--
Benjamin Sterling
http://www.KenzoMedia.com
http://www.KenzoHosting.com
Thanks MIke! That works. Keep up the awesome work!
malsup wrote:
>
>
> Julian,
>
> It looks like you're probably just rebinding the form over and over.
> Try changing that bind line to this:
>
> $('#' + theForm).unbind('submit').submit(function() {
>
> Mike
>
>
> On 5/4/07, juliandorm
I ended up turning this into one function, and it seems to work as far
as I have tested.
All I had to do was do this for the first part of the folder bind
function:
bindToFolder = function(specific){
$(specific).find('a').bind('click', function(evt){
// do stuff ...
Julian,
It looks like you're probably just rebinding the form over and over.
Try changing that bind line to this:
$('#' + theForm).unbind('submit').submit(function() {
Mike
On 5/4/07, juliandormon <[EMAIL PROTECTED]> wrote:
Hi all,
I am using Mike's ajaxSubmit method but I am running into
It's funny that you should say that because the jQuery mailing list is
the largest JavaScript mailing list out there (averaging over 100
posts/day). The next closest is Dojo at only about 60 posts/day. You'd
have to combine Dojo, Prototype, and Yahoo UI to get the level of
posts that we do.
--Jo
Andy,
>You might recall that my company is having some issues with using jQuery
>alongside SWFObject and select dropdowns with the onChange handler.
>
>I've seen a plugin that uses jQuery to call the SWFObject js file. But I'm
>wondering if anyone has a PURE jQuery solution for the IE "click to
>
Hello,
http://www.rodcast.com.br/
or
http://www.rodrigocastilho.com/
I used jQuery (compressed) and Plugins FontSizer and Stylesheet
Switcher (with Extensions Cookie)
On 5/4/07, Rey Bango <[EMAIL PROTECTED]> wrote:
No prob. I'll add it in then.
Rey
John Resig wrote:
> Rey -
>
> It's
Personally i like the relativaly small community that jQuery has, its easier
to identfiy people and the mailing list doesnt get thousands of emails per
day.
On 5/4/07, John Resig <[EMAIL PROTECTED]> wrote:
I don't think he has anything to do with name. Dr. Dobbs is a
business-centric programmi
Hi all,
I am using Mike's ajaxSubmit method but I am running into a weird problem.
Basically I have a page which allows you to rename folders using a form
which is bound by the ajaxForm. The ajax returns perfectly and updates the
new folder name with out a problem.
It gets weird though if I try
http://www.bennadel.com/index.cfm?dax=blog:680.view
http://www.commadot.com/?p=529
so cool.
On 5/4/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:
I guess when John Resig says CSS descriptors he really means it
On 5/4/07, Glen Lipka <[EMAIL PROTECTED]> wrote:
>
> On 5/4/07, Ⓙⓐⓚⓔ < [EMAIL PROTECTED]>
I guess what the problem is... is the fact that I'm trying to rebind
this click event to the whole .myTree ... and I really just need to be
doing that for the initial time. Then for every folder I open, it
should only bind the click event to that folder.
I can do that with two functions; is ther
Hey,
I got it working in IE & FF by adding a non-breaking space before the
tag (echoed in PHP):
echo "