This would work too:
if($("#option02:checked").length)
-- Yehuda
On Sun, Jul 20, 2008 at 3:51 PM, Micky Hulse <[EMAIL PROTECTED]>
wrote:
>
> Ok, I need to stop floundering around!
>
> Hehe... This is what I wanted:
>
> if($('#option02').is(':checked'))
>
> I think I need to read the docs... jQu
I would strongly recommend against putting a table in a span. Karl's
solution below is correct. You might also do :contains(.pdf) depending on
what sort of text is in your td's.
-- Yehuda
On Sun, Jul 20, 2008 at 6:38 PM, [EMAIL PROTECTED] <
[EMAIL PROTECTED]> wrote:
>
> Within a span with class
Within a span with class "TreeView", there is a table. Within the
table, there are TD's. I want to select the TD's whose content ends
in ".pdf". How would I go about writing an expression to, say, apply
a class to only those nodes?
Thanks for your help, - Dave
Perfect! Thank you very much!
On Jul 20, 7:26 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote:
> sure, that would work just fine.
>
> something like this, maybe? :
>
> $('#somelink').attr({href: 'newprependedtext' + this.href.slice(-6)});
>
> --Karl
>
> Karl Swedbergwww.englishrules.com
All our static files are hosted on Amazon S3 - they had an outage earlier today.
--John
On Sun, Jul 20, 2008 at 4:43 PM, Kevin Pepperman <[EMAIL PROTECTED]> wrote:
> same here. no CSS. degrading gracefully.
>
> On Sun, Jul 20, 2008 at 3:46 PM, xwisdom <[EMAIL PROTECTED]> wrote:
>>
>> Hello,
>>
Hello,
I have this on my client-side:
function BigAction(inputdata) {
var url = 'index2.php';
$('#progressIndicator').show('fast', function () {
$.post(url, inputdata,
function(data) {
$.each(data.items, function(i,item){
Dean Edward's Packer.
http://dean.edwards.name/packer/
--
Ariel Flesler
http://flesler.blogspot.com/
On 20 jul, 12:47, "[EMAIL PROTECTED]"
<[EMAIL PROTECTED]> wrote:
> I was curious what the jQuery guys use to minify their files? I saw
> there are two big ones out there, JSMin and YUI Compresso
Hi Dave,
I'd do it like this:
$('td').filter(function() {
return (/\.pdf\s*$/).test($(this).text())
}).addClass('someclass');
--Karl
Karl Swedberg
www.englishrules.com
www.learningjquery.com
On Jul 20, 2008, at 9:23 PM, [EMAIL PROTECTED] wrote:
My bad. Here's the HT
sure, that would work just fine.
something like this, maybe? :
$('#somelink').attr({href: 'newprependedtext' + this.href.slice(-6)});
--Karl
Karl Swedberg
www.englishrules.com
www.learningjquery.com
On Jul 20, 2008, at 7:52 PM, hubbs wrote:
I am wondering if it is possible
I am having the some problem...
obviously, I'm trying to post different data, but structured the same
way...
and I'm also getting "[object object]" on PHP side...
maybe if we bang our heads at same time to wall :)
I'll let you know if make it through the wall
On Jul 10, 10:07 am, lionstone <[EM
My bad. Here's the HTML. I would like to write an expression to
apply a class to all the TD's that have ".pdf" as the last part of
their innerHTML.
Hi all,
I have had this plugin in use for a while and it is ready for the
wild. This plugin originally was conceived to simply handle the
canonical cascade requirement of select elements filtering other
select element options, but has grown to deal with any similar
behavior requirement .
A demo h
Hey guys,
I do have an image overlay running at: http://preview.ndoki.de/
It works like a charm in all browsers, except IE6.
I noticed that it does not work, because the iepngfix script changes the
src-attribute of the images, since my navigation is made up from transparent
PNGs. But the jQuery ro
I am wondering if it is possible to use the .slice() method to keep 6
characters on the end of a URL in a href attribute, then append a new
URL to the beginning?
Or is there a better method to do this?
This may not really be a jQuery question; if you can suggest someplace
better to ask, please let me know.
I have some HTML in a textarea that the user will need to be able to
edit (eventually in FCK Editor.) This is stored in a DB as HTML, with
some things that look like escaped XML start t
Hi Mike.
First up, thanks for all your hard work with the jQuery team. It's an
awesome project. :-)
I was browsing "http://malsup.com/jquery/form/#code-samples
http://malsup.com/jquery/form/#code-samples this morning and chanced upon a
link thus: http://malsup.com/jquery/form/files.phps
h
Thank you all Much much appreciated!!!
Have a great day!
Cheers,
Micky
On Jul 20, 2:52 am, Mickster <[EMAIL PROTECTED]> wrote:
> I think you can use .replace(/%20/g, "+") after
> encodeURIComponent(String) to replace the %20 with a +.
> Like:
> var encodedString = encodeURIComponent("dog cat
Dear Syam,
That solved it! Thank you for catching that.
On Jul 20, 3:16 pm, Syam <[EMAIL PROTECTED]> wrote:
> Please check your HTML. It's missing a closing div (put a just
> before )
>
> Hope that helps!
> -Syam
>
> On Jul 20, 1:17 am, Mark <[EMAIL PROTECTED]> wrote:
>
>
>
> > Hi,
>
> > I
chris ha scritto:
Hi, I'm new to jQuery, so please take me slow :)
I've got a textarea:
And a div:
For example if i want to write the code for embeding a youtube vid in
the textarea i want the div to display the embeded vid.
Help! :D
This should work:
$('#code').bind('blur', function(
same here. no CSS. degrading gracefully.
On Sun, Jul 20, 2008 at 3:46 PM, xwisdom <[EMAIL PROTECTED]> wrote:
>
> Hello,
>
> The website is not rendering the CSS.
>
hello,
I'm becoming quite enthusiastic about jQuery as it has made many
solvable issues much more easier to handle. I'd like to introduce to
you the following 2 search tools. Plugins used were jQuery UI (tabs
and slider) and Cookie. If I had to choose one single most useful
jQuery-aided feature o
This worked perfectly:
HTML:
...
JS:
$(function() {
...
...
$('form#fmSearch').submit(function() {
var encodedString = encodeURIComponent($('#fmSearchKeywords').val());
encodedString.replace(/%20/g, "+");
});
...
...
});
Thanks for the specific coding Mickster! Ya'll rock!! :)
On Jul 20, 2:
Hello,
The website is not rendering the CSS.
Hi, I'm new to jQuery, so please take me slow :)
I've got a textarea:
And a div:
For example if i want to write the code for embeding a youtube vid in
the textarea i want the div to display the embeded vid.
Help! :D
dosent work anyone know a fix?
I guess this would be even better:
$("#option01:checked")
Not sure why I did not think of that earlier. :)
On Jul 20, 11:53 am, Micky Hulse <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I have a form (#fmSearch) with three radio buttons:
>
> ...
> ...
> ...
>
> When testing for a specific radio butto
Hi All,
i'm going crazy trying to get a pretty basic feature implemented with
Farbtastic.
I'm fairly new to jQuery so i hope this is just me being thick.
what I want to do is have 3 input boxes (just like in demo2.html),
which also controls the color of an additional element, i.e. click
input o
You have sent me the old version of Lighbox I have used it in my
current project without any problem .But I was fascinated that how
could they upload a Plugin which doesn't support safar!!!
On Jul 18, 10:58 pm, asle <[EMAIL PROTECTED]> wrote:
> I can confirm this. The large image opens in the
Hi,
I have a form (#fmSearch) with three radio buttons:
...
...
...
When testing for a specific radio button, which of the below
techniques is faster/better?
$('#option01').attr('checked', 'checked');
or
$("[EMAIL PROTECTED]'option01']:checked")
If I had to guess, I would say the the fir
I was curious what the jQuery guys use to minify their files? I saw
there are two big ones out there, JSMin and YUI Compressor and was
just curious which jQuery uses and if there are any special settings
they use. Thanks in advance!
> encodedString.replace(/%20/g, "+");
Or simply decodeURIComponent("dog+cat%20horse+whale").
For the second time, I am posting this to the errant poster named "my
name". Do NOT post an unsubscribe request to an existing thread. Don't
you know how to find the link for posting a new topic? Besides, you
can unsubscribe from your My Account link at the top of this page.
Click the button marke
Do NOT reply to an existing thread with a different topic? Don't you
know where the New Post link is? And besides, you can go to your
account from the My Account link at the top of this page. Then click
on the button that says, "Manage Subscriptions" and scroll down the
page that appears, until y
Also attr('style', 'prop:val') replaces the entire inline style. css()
just replaces that property.
Danny
On Jul 19, 12:37 pm, Geir <[EMAIL PROTECTED]> wrote:
> Thanks!
You need to wrap your javascript in a ready event, like this:
$(document).ready(function() {
var objs = $('#divHello')
objs.corner();
});
It may also be a good idea to put this in the if you can.
Check out this for more information on using jQuery:
http://docs.jquery.com/Tutor
Try this:
submitHandler: function(form) { $("#loginBtn").hide("slow");
form.submit();
},
The subtle difference: $(form).submit() triggers the validation again,
form.submit() doesn't.
Jörn
On Sun, Jul 20, 2008 at 5:23 AM, Steffan
Never mind. I figured it out. The problem was
--
View this message in context:
http://www.nabble.com/hover-links-to-fadeIn-Out-Divs-tp18550252s27240p18550694.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.
I think you can use .replace(/%20/g, "+") after
encodeURIComponent(String) to replace the %20 with a +.
Like:
var encodedString = encodeURIComponent("dog cat horse whale");
encodedString.replace(/%20/g, "+");
Good Luck!
//Mickster
On Jul 20, 3:24 am, spicyj <[EMAIL PROTECTED]> wrote:
> encodeURI
I mean (2) create css set of rules.
Now i have a simple way to modify the css set of rules.
Thanks. : )
On Jul 20, 1:15 am, Ariel Flesler <[EMAIL PROTECTED]> wrote:
> You mean, (1) add a class to an element, or (2) create css set of
> rules ?
>
> if (1): check the docs (docs.jquery.com).
> if(2):
Hi, you can envelope your for loop in an if statement to test for
boolean variable that will control execution like this:
var loopControl=true;
for (var=startvalue;var<=endvalue;var=var+increment){
if(loopControl){
// your loop code goes here
}
}
and now, if you set loopCo
Please check your HTML. It's missing a closing div (put a just
before )
Hope that helps!
-Syam
On Jul 20, 1:17 am, Mark <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I'm not the first person to post this problem:
>
> http://groups.google.com/group/jquery-en/browse_thread/thread/4c60ce5...
>
> http://www
Try checking for a status variable in the for loop and change that
variable on button click.
On Jul 20, 12:30 am, robert123 <[EMAIL PROTECTED]> wrote:
> I have jquery "for loop" it runs for about an hour doing some
> processing before stopping.
>
> In the for loop it execute alot of jquery Ajax p
If you go to their demo page:
http://www.filamentgroup.com/examples/menusHierarchical/
you can grab all the needed files (which appears to be 3 js and a css
file) using Firefox and firebug
Thanks. I did not know that.
I removed that but that did not solve my problem.
/asle
Hi,
I'm pretty new to jQuery package and as a training opportunity I 'm
converting my asp.net ajax site to use jQuery instead. Now, I need to
use round corners functionlity and I downloaded the jquery.corner.js
plugin, but when I try to use it, it doesn't seem to work right.
Consider this simple
Not sure if I understand but you need to bind an event to the content
which is not on the page on load. Livequery
http://brandonaaron.net/docs/livequery/
can do that. I use this lightbox plugin
http://leandrovieira.com/projects/jquery/lightbox/
if it is photos you want to display., And it works
I have jquery "for loop" it runs for about an hour doing some
processing before stopping.
In the for loop it execute alot of jquery Ajax post statement.
As the execution is quite long, I might want to stop the javascript
sometime using another button in the form, where the button will can
anothe
Anyone? Nobody using this lightbox plugin?
/asle
I am using jQuery table key navigation plugin and I have three key
navigateable tables. And focus can be moved across tables. How can I
know the table name which has focus?
I'm not sure. I don't know what could be causing an "eventCache"
error, I've never heard of it.
Karl Rudd
On Fri, Jul 18, 2008 at 7:41 PM, <[EMAIL PROTECTED]> wrote:
>
> Dear folk, I checked it , I ahve a serious problem with IE7 and 6 ...
> when I over load the Cookie some times
> ($.cookie('
50 matches
Mail list logo