I think the method you're looking for is .not():
http://docs.jquery.com/Traversing/not
Also, there is a shortcut for your mouseenter/mouseleave pattern called
.hover():
http://docs.jquery.com/Events/hover
If you look at the source code for .hover(), you can see that it is
literally a wrapper fo
Hi Toshiro Takahashi
First i should say thanks to you for replying
Actually i need to read data from yahoo stock quotes and show it in my
website so can you guide me to get data.
http://download.finance.yahoo.com/d/quotes.csv?s=%5EIXIC&f=sl1d1t1c1ohgv&e=.csv
Pls in detail.
On Nov 2
The first thing that caught my eye looking at your code is the missing "var"
on this line:
lg_pic = $(this).siblings('.lg_pic_name').html();
Surely you don't want to be creating a global variable here? It should be:
var lg_pic = $(this).siblings('.lg_pic_name').html
Hi there, hoping someone can help a strange intermittent problem.
Occasionally, I am experiencing 400 bad request errors when trying to
load jquery-1.3.2.min.js. I have taken the request and response
headers from firebug during a failure and a success. Does anyone have
more experience than myself t
I'm not sure whether this would be an issue with jQuery, but I'm sure you agree
that setting the ID attribute of a DOM element to a value that starts with a
digit is not correct, at least it does not produce valid XHTML.
Best regards,
Andreas
Hi all,
Using ASP.NET 3.5
I recently upgraded my ClueTip js file. I created a few new cluetip
instances around my site, and all seemed well, however, when I went to
test one of the first pages I ever wrote (which used a cluetip from
V0.9.8), I found that it had broken. This is the normal behaviou
Hello, all!
Brand new to JQuery, and I'm looking for a solution to my problem.
I have a page with, say, 30 thumbnail images. Currently, when one is
clicked, a larger version displays, and then you can back/next through all
30.
I have been tasked with making a change that doesn't seem difficult,
Dear all,
I'm trying to use the jquery validation plug in to verify that two
fields (email addresses) are the same. If read through the tutorials
etc but it does not work. I wondering whether I am using it in the
right way. I want to validate each field individually so I use onblur
to execute the
BH
I created a slider of thumbnail images. I write the image filepaths
directly into the HTML using PHP, so instead of using expandos I
placed a hidden div after each image containing the file name of the
large version to be shown onclick. Works fine in FF and Chrome. IE
stops at the first line in
function ajax_post_var(url, event_id)
{
var info = $.post(url).responseText;
alert(info);
if (event_id == '1')
{
do something with info...
}
...more if's here...
}
Why does info show undefined... I'd like to be able to use the
returne
By the way, the reason why csv2table cannot read the text file of the
other domain is because it uses $.get method of jQuery.
But I do not get along well even if I change $.get in $.getScript.
When capture a TCP packet, the data body arrives,; but csv data as for
the JavaScript is because is not
http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_stop_working_after_an_AJAX_request.3F
http://docs.jquery.com/Events/live
Please see my response to the recent "jquery uploadify question" msg.
On Thu, Nov 26, 2009 at 12:09 PM, Keysher wrote:
> Hi!
>
> I have a problem.
>
> I wan
You have 2 separate classnames there--'selected' and 'insense-selected'.
Anyway, why don't you just add the class to the hovered element and
save yourself some trouble? Because wrapping a strong or dd element
with a div is certainly asking for a lot of trouble.
On Thu, Nov 26, 2009 at 3:50 PM, co
See:
http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_stop_working_after_an_AJAX_request.3F
In a nutshell, you're declaring a click handler for all elements with
class 'img_del' *when the page loads*. But your element is being added
during the onComplete callback of uploadify()
Hi, Ram
Thank you for using my plugin.
On Thu, 26 Nov 2009 02:21:19 -0800 (PST)
Ram wrote:
> I am new to jquery Its nice
> in csv2table i need to get values dynamically from a particular url
> everyminute ...
> i dont know how to get from particular url (
> www.websitename.com?asdfasdf.c
Hi Bruce,
Try this:
$('.accord > h6').click(function() {
$(this).toggleClass('expand_group').siblings
('h6.expand_group').removeClass('expand_group');
$(this).next('fieldset').slideToggle('fast').siblings
('fieldset:visible').slideUp('fast');
return false;
});
Reg
I have a menu looking like this:
...
...
...
and so on...
I then have a mouseenter function that highlights/"de"-highlights the
various menu items, but I would like to not having it affect the item
with the extra class "current_page_item". How do I solve this?
my current code:
$(document)
Hi.
Thanks.
That was what I needed.
Kr.
Luke.
On Nov 26, 6:04 pm, Rick van Hoeij wrote:
> Hey,
>
> Best way to make sure that the form has been loaded is to use the load
> callback function:
>
> $('#formGen1').load('formGen1.jsp', function(){
> //Callback function: Form has been loaded
>
Hi guys,
I'm looking to develop this plugin in jQuery, or is there already an
available version in jQuery for this effect?
http://movies.yahoo.com/feature/hmg-weekend-roundup-11-25-09.html
I really want the fading effect of the plugin.
Please tell me. Thanks
Hi,
I'm trying to append an div element around the element that triggers the on
hover event, then remove the div on mouse out (blur). I normally would use
addClass / removeClass but this leaves class="" when the class is removed
and not the original state of the html. Here's my code, I can't work
may want to try the correct syntax for "each"
$.each($items, function() {
totalit(this);
});
also, just to point out, usually "best practice" points out to use "$"
at the beginning of variable names for jQuery objects surely works
otherwise, but your style is slightly confusing
On Nov
Here's a link to a screenshot of my console. When I click the form
this displays for a moment before the page reloads and the console is
refreshed. To view this I have to hit the stop bottom before it
reloads the page. It reloads because there isn't a value in the action
attribute of the form.
htt
change the LI's to float right instead of left
Vlad Shapiro wrote:
Ahoy!
I'm trying to adjust Superfish nav-bar style menu for RTL'ed Hebrew
website,
Example:
http://users.tpg.com.au/j_birch/plugins/superfish/#sample4
but no success so far, maybe someone already have this solved?
Any hel
Hey Eric,
Thanks for checking into this. I've done some more digging and I've
narrowed the issue down to the container/wrapping div that is injected
into the DOM. If I remove the following from the container
(s.d.container) when it is created:
display: 'none',
position: 'fixed',
..the di
I don't recommend it, as it's there for accessibility. However, if you must,
add your own handle manually with no href:
If you have any more questions about it, please ask on the jQuery UI list:
http://groups.google.com/group/jquery-ui
- Richard
On Thu, Nov 26, 2009 at 10:51 AM, akitainu2
Hi!
I have a problem.
I want to disable links in a specified class. Like this:
$(".disabled").click( function() {
return false;
});
It works fine if the class exists before, but if I add the class to an
element, not works!!
$(document).ready(function() {
$(".disabled").click( f
Thank you very much Kelly!
You solved my problem.
On Thu, Nov 26, 2009 at 12:59 AM, Kelly wrote:
> Hi David,
> I was able to recreate the same problem and fixed it. Try this:
>
>
> jQuery Form Plugin
>
> form { background: #DFEFFC; border: 5px solid #c5dbec; margin: 10px 0;
> padding: 20px }
That script will get a single GET paremter with the name of the field as the
key and the value of the field as the value, here you'd get
verifica_user.php?cusuario=username
Jörn
On Thu, Nov 26, 2009 at 1:30 PM, RCLumbriga wrote:
> Hi.. Sory the really bad english
>
> I have one problem with re
its kinda common,
but yeah it is a quick work around through jquery if you don't wanna use
forms..
a little less html. and a few lines of js :)
On Thu, Nov 26, 2009 at 4:30 PM, Henjo wrote:
> That would be like a workable trick. Is this something common?
>
> On Nov 26, 2:40 pm, waseem sabjee w
Can slider keyboard control be disabled for good without disabling the
slider?
Thanks.
--
View this message in context:
http://old.nabble.com/jQuery-Slider---disable-keyboard-control-tp26531343s27240p26531343.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.
Ahoy!
I'm trying to adjust Superfish nav-bar style menu for RTL'ed Hebrew
website,
Example:
http://users.tpg.com.au/j_birch/plugins/superfish/#sample4
but no success so far, maybe someone already have this solved?
Any help will be most appreciated!
Best regards,
Vlad.
Hi.. Sory the really bad english
I have one problem with remote in Jquery.validate
I do this
cusuario:{
required: true, minlength: 5,
remote: "verifica_user.php"
},
Now i whant know how the script ver
Hello,
I have below code that run the function when document is ready. It
works fine in Firefox but not IE. What did I do wrong? Looks like the
code doesn't get run at all. I tried jQuery(function() ... but it
didn't work too
$(document).ready(
function() {
var $items = [
csv2table('./data/Book12.csv');
can i use yahoo
http://download.finance.yahoo.com/d/quotes.csv?s=USDIRR=X&f=sl1d1t1ba to get
csv
instead of './data/Book12.csv'
i tried like this
$('#view0').csv2table('http://download.finance.yahoo.com/d/quotes.csv?s=%5EIXIC&f=sl1d1t1c1ohgv&e=.csv');
but
Hi!
First of all I'm very sorry to ask, but I couldn't get it working
whilst spending hours on this.
I changed the ling-height of the .sf-menu from 1.0em to 2.5em.
Now the folded out submenus appear in the middle of the menu bar.
=
.sf-menu {
line-height: 2.5em
Hi David,
I was able to recreate the same problem and fixed it. Try this:
jQuery Form Plugin
form { background: #DFEFFC; border: 5px solid #c5dbec; margin: 10px 0;
padding: 20px }
// wait for the DOM to be loaded
$(document).ready(function() {
// bind 'myForm' an
Just wondering which jquery plugin you prefer for generating gantt
charts and other graphs. I'm busy scanning through the plugins,
checking out the demos but I was hoping for a few pointers so I could
hone in on the best ones. Thanks
Hi,
I got it to work, following is the solution:
Simply put
.sf-menu {
line-height:2.5em;
}
to change the line-height of the menubar and additionally to control
the
distance of the submenus to t
Hello folks,
I have an operational accordion based on a series of fieldset tags
(the content) and h6 tags (the triggers).
It is initiated by:
$('.accord > h6').click(function() {
$(this).next('fieldset').slideToggle('fast').siblings
('fieldset:visible').slideUp('fast');
});
The trigger
Hello,
This user.php on port 80
$callback = $_GET["callback"];
$user = $_GET["username"];
if($user == "lazy") {
$response = array("message" => "SUCESS");
} else {
$response = array("message" => "FAIL");
}
echo $callback . "(". json_encode($response) . ");";
This is index.html on port 8080
I am new to jquery Its nice
in csv2table i need to get values dynamically from a particular url
everyminute ...
i dont know how to get from particular url ( www.websitename.com?asdfasdf.csv
) and generate table for that value.
$(function(){
$('#view1').csv2table('book12.csv');
});
any h
Eric,
I don't have IE6 installed (just got a new laptop with windows 7), but
I wasn't able to reproduce the issue in IE8 compatibility mode.
SimpleModal only styles the dialog element, so I'm not sure why that
would be affecting other divs on your page...
-Eric
On Nov 26, 4:50 am, Eric Getchell
That would be like a workable trick. Is this something common?
On Nov 26, 2:40 pm, waseem sabjee wrote:
> you dont need to you a form.
>
> set up the following html
>
>
> > Somehow it always goes to the plain index.php adding the values behind
> > it like: index.php?myFormValue=value .
>
> > I
This is not currently supported. You can track progress here:
http://dev.jqueryui.com/ticket/4205
- Richard
On Wed, Nov 25, 2009 at 9:59 PM, He Jun-Jie wrote:
> Thank you for replying my question. My situation is very easy I just
> want to ask whether the jQuery ui selectable provides a way to
what you are discovering is the root of most problems installing one
menu in any template with an existing menu will run into css conflicts.
The majority of the issues that pop up in this group regarding
superfish stem from Joomla installs and the exact situation you are
running into
Without
you dont need to you a form.
set up the following html
Somehow it always goes to the plain index.php adding the values behind
> it like: index.php?myFormValue=value .
>
> I don't get any errors in the debug console (FF) or the Error Console.
> How can I get this to work properly?
>
> When I mod
Hi,
a form that has an action to an index.php?id=value is submitted
through jquery with $('form').submit() .
Somehow it always goes to the plain index.php adding the values behind
it like: index.php?myFormValue=value .
I don't get any errors in the debug console (FF) or the Error Console.
How can
'Tarding' was such an appropriate change to the subject, for that
post. But let's change it back now.
On Nov 25, 10:58 pm, forextradingevo
wrote:
> u should google it and may be u can find some from there or u can visit here
> to get some help
>
> -http://www.forextradingevo.comforex tradin
The images are there, they're just for some reason moved to the left.
If you assign a margin-left of 50px to your first image, you'll see
that they are actually visible.
Seems to be a style issue (maybe IE-related), rather than a jquery
issue.
Additionally, your page throws a handful of validatio
Hello,
I am having an issue with the simplemodal plugin that I’m hoping
someone will have a solution for – or at least tell me what is
happening. I have a layout which uses absolute divs to provide a
three-column liquid layout.
In IE 6 and 7, when simplemodal fires, any div that has both a left
The function of your plugin is to trigger the event 'myEvent'.
The first time you invoke the hilight() method but now the 'myEvent' event
not bind to '#myDiv',so you cannot get the alert information.
The second time you click, the '#myDiv' has bind 'myEvent' one time, so you
get the alert informa
The validation plugin hides labels based on the error class. By adding that
class to your regular label, it'll get hidden, too. Try using a different
class for the regular label (with the same styles).
Jörn
On Wed, Nov 25, 2009 at 4:35 PM, Imre Farkas wrote:
> I'm trying to specify a couple of
Hey,
Best way to make sure that the form has been loaded is to use the load
callback function:
$('#formGen1').load('formGen1.jsp', function(){
//Callback function: Form has been loaded
//Code implementation
});
I usualy hide the form that I'm editing until it is ready to be shown.
Simple h
53 matches
Mail list logo