you are correct, this works in Safari, IE, Opera and Firefox,
interestingly Firefox failed on this:
New York
when the options are ajax loaded into the element, thanks for your
help, also to all others who responded to me, a difficult part of
Javascript programming is, finding a way to make it work
Hi, all..
I'm using Joern's validation plug-in and I'm getting an error message.
The strange thing is, I use the same plug-in on a different page for a different
form and it works perfectly.
Firebug tells me this: $("#trans_add_form").validate is not a function
(and it also has beneath that: tra
> Hi Mike!
>
> Thanks for your answer! Your plugin is great!
>
> I have changed the code. But still nothing happens in IE...
>
> Any suggestions?
>
> On 27 okt, 16:20, "Mike Alsup" <[EMAIL PROTECTED]> wrote:
> > > I created an embedded windows media player object with the jquery
> > > media-plugin
wow!!! What a builtfull code :))
Worked perfectly
Thanks a lot, Wizzud
Hope I get that advanced in jquery soon
[]s
Feijó
On Oct 26, 9:04 pm, Wizzud <[EMAIL PROTECTED]> wrote:
> OK, so they're actually children of the grandparents (aunts/
> uncles?)...
>
> var checkBoxes = $('.form-checkbox')
Hello,
i want to call a function $('#selection').parent.child()
with the following code :
jQuery.fn.extend({
parent: {
child: function(o){ doSomethingWith(selectedElement) }
}
});
but i dont know how to pass the selected element through parent
(#selection) to child function.
regards.
thanks a lot for all the work, Dave! I wanted to reply so you don't
think I'm ignoring you. I've been at conferences all week, out of
town, so my time to spend on any of this stuff has been quite
limited. I will try to dig into it and have some sort of fix in place
by the end of the coming
Hi Friends
i'm looking something like ContextMenu plugin, but it works with left
click and have submenus, another pluging that i have seen need to
construct ul tag for every link, but ContextMenu for instance you can
make ul and you can attach ul menu and javascript for all rows in a
grid.. .
tha
DaveG wrote:
Okay, I have a little more, and now it's more important :) Due to the
positioning issues I was having I switched to use bottomTop. This works
fine, *except* when the target element is close to the right side. In
this case the hint gets pushed horizontally out to the center of th
There *seems* to be a pattern where the elements are floated, it causes
the problem -- I'm not 100% sure of this though.
The problem is odd in that there seems to be a relationship between
where the hint last appeared, and where it is displayed for a subsequent
element.
There are some el
$(document).ready(function(){
});
miss ";" ?
On Oct 27, 9:15 am, "[EMAIL PROTECTED]"
<[EMAIL PROTECTED]> wrote:
> Hi,
>
> I try to set a selected option in a Select box, the following code
> works without jQuery function defined, once I un-comment the jQuery
> part, it works in Firefox, but not
http://labs.cloudream.name/jquery/move.html
like this?
On Oct 26, 5:57 am, powtac <[EMAIL PROTECTED]> wrote:
> Is there a way to reduce the cpu load when I do something like this
> (and move the pointer very fast on the screen):
>
> $(document).mousemove(function(e) {
> x = e.pageX;
>
Just for the archives, I found that Safari won't let jQuery add a
selected attribute, but if one exists jQuery can toggle it.
E.g., New York
should work.
I sorted through this a few months ago, so my memory may be a bit off.
On 10/26/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
> Hi
http://groups.google.com/group/jquery-dev/browse_thread/thread/cc768c85d5514098?hl=en
On Oct 26, 10:48 am, Flesler <[EMAIL PROTECTED]> wrote:
> $(function(){
>$(document).mousemove(function(e){
> draw([ e.pageX, e.pageY ]);
> });
>
> });
>
> do you really need to generate an arra
This was a regression in 1.2, fixed in 1.2.1. See ticket #1580 for details:
http://dev.jquery.com/ticket/1580
- Richard
On 10/27/07, Mike Alsup <[EMAIL PROTECTED]> wrote:
>
>
> > When calling an AJAX function with the POST method, there is no way
> > for me to edit the GET fields of the URL beca
Thanks. that looks like the best route to take.just leave the
field empty of value and validate against "required".
Much appreciated!
Rick
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Web
Specialist
Sent: Saturday, October 27, 2007 11:40 AM
To: jquery-en@
Sorry.
Choose a category
< option value="2">Automotive
Medical
2007/10/27, Web Specialist <[EMAIL PROTECTED]>:
>
> Rick
>
> I'm using Jorn's Form Validation plugin and this approach works fine:
>
> validate="required:true">
> Choose a category
> < option value="">Automotive
> Medical
>
>
>
Rick
I'm using Jorn's Form Validation plugin and this approach works fine:
Choose a category
Automotive
Medical
Cheers
Marco Antonio
2007/10/27, Rick Faircloth <[EMAIL PROTECTED]>:
Hi, all…
>
> Quesiton:
>
> How to validate the selection for a drop-down select input?
>
> If choices are:
>
Hi, all.
Quesiton:
How to validate the selection for a drop-down select input?
If choices are:
1 - Choose Category (This is the default selection)
2 - Automotive
3 - Medical
If the user doesn't change from "1 - Choose Category" I want
an error message instructing them to choose a category.
So
On Oct 27, 7:15 am, fiasst <[EMAIL PROTECTED]> wrote:
> Hi there,
>
> I'm using jQuery for a ecommerce site I'm working on. It's using Draggables
> and the site can be found http://www.sibenet.com/limebluehere .
>
> My problem
> When viewing in IE7 the sidebar menu (semi-transparent menu on the f
On Oct 26, 6:15 pm, "[EMAIL PROTECTED]"
<[EMAIL PROTECTED]> wrote:
> Hi,
>
> I try to set a selected option in a Select box, the following code
> works without jQuery function defined, once I un-comment the jQuery
> part, it works in Firefox, but not in Safari any more, please help,
> Thanks.
>
>
On Oct 27, 1:25 am, BuckRogers <[EMAIL PROTECTED]> wrote:
> How do you return the index of an option selected:
>
>
> ab value="C">c
>
>
> I want to return 0, 1 and 2 when the above optiones are selected
$('select').change(function () {
var idx = this.selectedIndex;
alert(idx);
});
On Oct 26, 5:27 pm, "[EMAIL PROTECTED]"
<[EMAIL PROTECTED]> wrote:
> Hi,
>
> following code works in Firefox, but not Safari, why? or just my
> Safar? can anybody test it? Thanks.
> A.C.
>
> $("#state [EMAIL PROTECTED]'KY']").attr("selected", "selected");
>
>
> New York
> Alaska
> Ke
Hi Mike!
Thanks for your answer! Your plugin is great!
I have changed the code. But still nothing happens in IE...
Any suggestions?
On 27 okt, 16:20, "Mike Alsup" <[EMAIL PROTECTED]> wrote:
> > I created an embedded windows media player object with the jquery
> > media-plugin. This object has
It's really too bad that this is left unfixed for so long. For the
project I'm currently working on, I think I'm going to have to switch
to Prototype in order to get a working Sortable list :-(
I love jquery and would love to stick with it, but it needs to work
(including the UI effects). Sigh...
> When calling an AJAX function with the POST method, there is no way
> for me to edit the GET fields of the URL because they are incorrectly
> passed as POST.
>
> I would like to use this follow URL structure in my ajax requests:
> url: 'myfunction.php?fooBar'
> method: 'POST'
>
> But through fir
> I created an embedded windows media player object with the jquery
> media-plugin. This object has id="wmplayer" and plays a stream on my
> page. This works very well. But now I want to play the stream
> fullscreen.
>
> This is what I did:
>
> (on page):
> play fullscreen
>
> (jquery):
> $('#full
Hi there,
I'm using jQuery for a ecommerce site I'm working on. It's using Draggables
and the site can be found http://www.sibenet.com/limeblue here .
My problem
When viewing in IE7 the sidebar menu (semi-transparent menu on the far
right) jumps to the left of the screen after it's been dragge
Try the following:
$(function() {
$("#debug").click(function() {
$("#mySelect option").each(function(i) {
if (this.selected) {
alert($(this).attr("value") + ":" +
$(this)
Hi All!
I have a problem and hope somebody can help me.
I created an embedded windows media player object with the jquery
media-plugin. This object has id="wmplayer" and plays a stream on my
page. This works very well. But now I want to play the stream
fullscreen.
This is what I did:
(on page)
Using 0.9.2.1, this line is the problem:
if (tipAttribute == $this.attr('href')) {
return false;
}
Problem is that both tipAttribute and $this.attr('href') are undefined,
returning false, which seems to prevent the anchor inside the triggered
div from firing.
Here's my workaround
It seems that using the setTimeout() directly, without use of the
pause-plugin, do the trick, b/c this can be "undone" with
clearTimeout().
$('#navigation>ul>li>a').mouseover(
function(){
var myList = $(this).parent('li').children('ul');
if( myList.css('dis
Ryura,
Good idea - now I will try to add another parameter to the subgrid
where we can choice which columns should be passed to the subgrid url
Regards
Tony
On 26 Окт, 16:54, Ryura <[EMAIL PROTECTED]> wrote:
> Another great update.
> I've been working with subgrids now, and everything seems ver
hi group,
I use the pause-plugin (http://blog.mythin.net/projects/jquery.php) to
delay an slidedown-effect in my navigation if the user mouseovers a
link. I have slightly modified it to get it to work (changing line 29
from
$.dequeue(self)
to
$(self).dequeue()
So this works fine:
$('#navigation
yea, that works, thanks Karl! Yea, i agree too that following css
convention is a better choice.
Here's the other deprecated stuff in v1.2 that I just found (for other
newbies):
http://docs.jquery.com/Release:jQuery_1.2#Removed_Functionality
john
On Oct 26, 7:13 pm, Karl Swedberg <[EMAIL PROTECT
How do you return the index of an option selected:
abc
I want to return 0, 1 and 2 when the above optiones are selected
On 23 oct, 06:26, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
wrote:
> OK I figured it out
> Unfortunately this means that the item effectively has no parent
> element (other than ) to inherit cascaded styles from. However,
> it is enclosed in a div with an id of "dragHelper". So to restore your
> st
Thanks. Are you saying I should remove this line
$('#slidebar').html($('#hidebar').html());
So I have the following?
$(document).ready(function() {
initSlideboxes();
function initSlideboxes()
{
$('#slidebar').slideDown("normal");
setTimeout(function()
{
$('#slidebar').
37 matches
Mail list logo