so easy ;)
thank you man
On Mar 28, 10:33 pm, Marco Elisio Oliveira Jardim
wrote:
> A simple
>
> $('#slider .navigation li').length;
>
> will make it. ;)
>
> _
> Lois Griffin: I’m a naughty girl and I need a spanking!
> Peter Griffin: And I'm a paladin with 18 ch
A simple
$('#slider .navigation li').length;
will make it. ;)
_
Lois Griffin: I’m a naughty girl and I need a spanking!
Peter Griffin: And I'm a paladin with 18 charisma and 97 hit-points, I can
use my helm of disintegration and do 1d4 damage as my half-mage elf
Your click handler only applies to the elements matching
".ajax_homes_primary_img" at the time the click() function is called.
When you replace it, the new element has no event listeners attached.
You can either rebind the event every time you modify it, or use the
'live' function, which uses even
Hello guys,
is there a way to know how many element have a specific CSS class?
I have a list and I need to know how many items it contains.
I guess it should be omething like: $('#slider .navigation li'). ...
Thanks
Sorry, that site is a bad example. I was referring to the list of
links on the site. I can't just use CSS because I want the list to be
dynamically generated with addItem() and removeItem() methods, and I
also want items to be selectable.
On Mar 29, 12:30 am, brian wrote:
> On Sat, Mar 28, 2009
On Sat, Mar 28, 2009 at 11:30 PM, Zach wrote:
>
> I've searched extensively for a jquery widget that allows me to add/
> remove items to a list, set font size, etc. For an example of what I
> mean, see here:
>
> http://www.webresourcesdepot.com/dnspinger/
>
What are we supposed to be looking at?
The jQuery('some_selector') method will retrieve an array of objects, no
matter how many items exists with that selector.
In your case you should use something like this:
jQuery('#slider.navigation a.selected')[0].id;
^^ (you
mis
THANKS!
On Mar 27, 8:00 pm, Pierre Bellan wrote:
> Hi,
> you select your select :
>
> $('#myselect');
>
> then u find the option with the value -1 :
>
> $('#myselect').find('option[value=-1]')
> or
> $('#myselect option[value="-1"]');
>
> finally you removed it
> $('#myselect option[value="-1"]'
Well, so far my lesson from that project has been 'do the other things
first until you find the right grid'.
It's a really big project, so I've had plenty keeping me busy in the
mean time.
What I do know is that making a grid out of a normal table severely
limited my ability to do creative th
I've searched extensively for a jquery widget that allows me to add/
remove items to a list, set font size, etc. For an example of what I
mean, see here:
http://www.webresourcesdepot.com/dnspinger/
Could anyone point me in the right direction?
i am wondering how can i create a button like the open dialog button
in http://jqueryui.com/themeroller/ when i copy and paste the source
for the button from the jqueryui site, i dun get the right positioning
without editting the css. am i missing something?
Open Dialog
inline style="" are added
Just to clarify and update...
I've attempted to use the LiveQuery plugin (see code below) so that
elements that don't exist yet (that are getting retrieved via $.get)
get bound to the 'click' event, but that didn't change anything.
HTML pre-load page: test.html
Content page loaded via $.get: tes
Turns out I had something else impacting the click. so put a
preventDefault() (had the return false already) and that cured it.
On Mar 26, 9:39 am, Ariel Flesler wrote:
> In case James comment doesn't do for you, please provide a demo.
>
> --
> Ariel Fleslerhttp://flesler.blogspot.com
>
> On Ma
Hello guys, I'm trying to make some changes to the coda slider effect
on jqueryfordesigners.com
Basically what I want is changing the buttons every time I move from a
panel to an other one.
I have the code below:
FIRST
SECOND
THIRD
...
and the link to the current panel have
> Want to know if it's possible to show thumbs attached prev/next
> anchors when I put the mouse over these navigation links. It would
> work like a preview tooltip for next/prev images.
That's not something that the Cycle plugin will do for you. However,
you could probably use the before/after
> I'm trying to use the form plugin from malsup.org to submit a form
> with ajax, but it does not seem to work with options.
>
> This works:
>
> $("#loginform").ajaxSubmit(function(obj,
> statusText) {
> alert(obj);
>
Just read the release notes for JQuery 1.3 as I was having a similar
issue:
"The '@' in [...@attr] has been removed. Deprecated since 1.2 this old
syntax no longer works. Simply remove the @ to upgrade."
The thickbox code on line 78 uses @rel to find all the gallery items
with the same rel tag.
Hi
when I added jquery-1.3.2 and jquery.ui-1.7.1 to my page here
http://ssmedgroup.com/beta/index.html
it causes my page to flash/blink as the browser redraws the page on
load. (click on the navigation tab; you'll see what I mean.) It
happens on safari 4, chrome (though less so), and IE6&8.
Hello everybody,
Ok so i am a complete beginner in both jQuery, JavaScript and english.
I build a script to check a survey for empty questions, if so show a
new tr and make a list of empty questions. If the script detects no
errors it will submit the form.
It worked like a charm in firefox but o
Hi,
I'm brand new to jQuery, and so far I love it! I don't know ajax from
a cumquat and yet, here I am ajaxing around merrily, even if clumsily.
I've run into a situation where I have a grid of images, one which is
to be the default, or the main image. When I click the radio button,
it correctly
Hi,
I'm trying to use the form plugin from malsup.org to submit a form
with ajax, but it does not seem to work with options.
This works:
$("#loginform").ajaxSubmit(function(obj,
statusText) {
alert(obj);
This is exactly what I did on my site: n0wq.com
The base code that I used was from:
http://www.dynamicdrive.com/dynamicindex17/ddaccordionmenu.htm
Modified the CSS to do what I need it to do, and added the Ajaxify plugin
to load the main content section.
NOTE: make sure in the submenuheader c
Hi,
I' m using $.post in this form: $.post("rpc.php",{data:data},function
(result){$('.aDiv').html(result);});
Basically i' m searching inside a database and the results are echoed
from rpc.php in this form:
Some text... . Everything works fine except that the links don't work.
So if i us
Hi,
I'm having a problem with the jquery (ajax) form plugin. It says on
the page (malsup.com) to seek help here :)
When I invoke ajaxSubmit() with a function it is called on success.
But when I invoke ajaxSubmit() with a Options object with success:
function() {..} the function is not invoked. A
Are you looking for something like this?
http://cssglobe.com/post/1695/easiest-tooltip-and-image-preview-using-jquery
pthesis.
On Mar 27, 7:39 am, banacan wrote:
> As the subject says, I'm looking for a plugin that will display a larger
> image of the thumbnail when the mouse is hovered; som
Hi,
I'm using Superfish 1.4.8 on my site (http://users.tpg.com.au/j_birch/
plugins/superfish/) and have created my navigation in the basic
vertical dropdown style with the addition of SuperSubs to handle the
widths of the sub-menu items.
All is working great except for one thing.
A number of the
Hi guys,
I want to display a simple "Loading..." image while my page loads.
I've got it halfway working at http://pranshuarya.com/test.html. The
problem is that once the page gets loaded, the JavaScript
functionality in it doesn't work (even though the files are getting
loaded). You'll know wha
Are you looking for something like this?
http://cssglobe.com/post/1695/easiest-tooltip-and-image-preview-using-jquery
pthesis.
On Mar 28, 1:41 pm, banacan wrote:
> Sliver,
>
> Thanks for the reply. I must confess, searching the plugins directory
> is tremendously frustrating. Quite often I
Hi,
I'm trying to use the form plugin from malsup.org to submit a form
with ajax, but it does not seem to work with options.
This works:
$("#loginform").ajaxSubmit(function(obj,
statusText) {
alert(obj);
Most plugins will return a this.each(function(){... call, so if there
are no matching elements, nothing will get executed, practically zero
overhead. But that is a different question, in case the plugin itself
doesn't exist you'll get the 'myplugin is not a function' error. If
you're in a place wh
+ 1 !
Rick
-Original Message-
From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On
Behalf Of banacan
Sent: Saturday, March 28, 2009 3:41 PM
To: jQuery (English)
Subject: [jQuery] Re: Plugin to display large image of thumbnail on hover
Sliver,
Thanks for the reply.
Is it possible to display response from ajax script err something
like this:
I call ajax.php and usually i takes few seconds to finish, and I would
like to update 'target' with something like text progressbar.
Finding solution
Coumputing infinity...
Talking with God...
Done.
Currently th
Sliver,
Thanks for the reply. I must confess, searching the plugins directory
is tremendously frustrating. Quite often I will know the name of a
plugin and will attempt to find it by name, only to receive a "0
entries found" response. Other times I get bits and pieces of posts
with the keyword
I've just found this plugin that seems to work fine and the minified
version is only 2 kb ... :
http://flesler.blogspot.com/2007/10/jqueryscrollto.html
Is this the best way ?
Thankyou.
Jsbeginner a écrit :
Hello,
I've got a simple form with a return false function to stop it being
submi
Thanks Jack. I'll check them out.
On Mar 27, 1:49 pm, Jack Killpatrick wrote:
> this isn't quite the same, but
> FYI:http://james.padolsey.com/demos/imgPreview/full/
>
> there's also this:http://www.mind-projects.it/projects/jqzoom/demos.php#demo1
>
> - Jack
>
> banacan wrote:
> > As the subje
Hello,
I've got a simple form with a return false function to stop it being
submitted as I use ajax to update it. However I've come accross a
functional problem : if the user's screen is to small and he has not
scrolled down enough then he doesn't see the search results and gets the
impressi
One workaround is to wrap the contents of each TD in a DIV. Hide those
divs and then slide them down. The only other thing I would suggest is
to use fadeIn() instead.
--Karl
Karl Swedberg
www.englishrules.com
www.learningjquery.com
On Mar 28, 2009, at 7:17 AM, Jsbeginner wro
Hi John,
Thanks for ur reply.presently I am able to call validate()
method for both the fields.But it's not working with following code.
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
<%@ taglib prefix="html" tagdir="/WEB-INF/tags/html"%>
<%@ taglib uri="http://ja
Forgot to mention I was talking about jquery cycle. sorry. ;/
On Mar 27, 11:18 pm, Victor Nogueira
wrote:
> Hi there,
>
> Want to know if it's possible to show thumbs attached prev/next
> anchors when I put the mouse over these navigation links. It would
> work like a preview tooltip for next/pr
Have you thought of using AJAX to embed the remote page within a
instead of using an iFrame? I know you would have to use JSONP to get it to
work across domains, so it kind of depends on how much control you have over
each site. Another way of doing it would be using a proxy script to fetch
the
Somme news :
I made a simplier script :
$(document).ready(function(){$(".txtSerial").click(function () {$
(this).autocomplete("./serieComplete.php", {max: 10, scrollHeight:
220, mustMatch: true}).result(function(){alert($(this).attr
("id"));} );});});
and I found out that in fact
Your code looks good:
http://jsbin.com/usobo
but it only allows the dialog to open once. If by chance you're having
trouble opening the dialog after it has closed, by clicking the same button:
http://jsbin.com/ayuso
- Richard
On Sun, Mar 22, 2009 at 12:18 AM, phanorcoll wrote:
>
> hi im new
> Do you need jQueryfor that? Can't you jut use the HTML tag
> in the frame you don't want scrollbars
> in?http://www.w3.org/TR/REC-html40/present/frames.html
>
> On Mar 28, 4:41 am, themba wrote:
>
> > Thank you, my problem is that a normal iframe cannot have an auto
> > height, I don't want a
Hi guys
I am looking for a snippet of code to trigger an event when the user
selects a piece of text and copies to the clipboard (either pressing
ctrl-c or right click/copy).
Is it possible?
Do you need jQueryfor that? Can't you jut use the HTML tag
in the frame you don't want scrollbars in?
http://www.w3.org/TR/REC-html40/present/frames.html
On Mar 28, 4:41 am, themba wrote:
> Thank you, my problem is that a normal iframe cannot have an auto
> height, I don't want any scroll bars
Anyone had any problems pulling jQuery through ASAH? I have a lightbox
plugin working on a page I am trying to embed somewhere else and all
the js is stripped out...not sure how to work around it. Everything is
on my server, I'm not pulling in any external HTML.
Cheers!
Hello everybody,
I am brand new using jquery and have some problems !
I have to say I am not un professional so be indulgent with my code !
Could someone tell me if there some obvious mistake in this script :
$(document).ready(function(){
$(".txtSerial").click(function () {
Hi,
Below I post js code from jquery website.
$(document).ready(function() {
var selected = new Array();
$('select').mouseover(function() {
if (this.multiple == true) {
for (var i=0,a=0;i
Hi there,
Want to know if it's possible to show thumbs attached prev/next
anchors when I put the mouse over these navigation links. It would
work like a preview tooltip for next/prev images.
Thanks on advance and congrats for this great software.
Hello,
I'm trying to use the jquery slidedown function with table rows but it
does not work as jquery defines them with display:block which places the
whole row in the first colomn and makes the whole table layout go wrong ...
Do you have any suggestions how to get around this ?
Here's my c
I've tried jQuery with netbeans.
It's pretty good :)
2009/3/28 iceangel89
>
> which IDE is best for JQuery? i mean like has code completion for
> JQuery, at least HTML, CSS, JavaScript. best if it can also code
> complete PHP/Zend Framework. or your custom classes.
>
> Aptana can code complete
what can i do to allow users to click on the accordion header to
navigate to a page?
the reason is, i am using accordions for my navigation. for some of
the pages, there are subpages so an accordian is used. but for others,
there are no subpages and i want users to be able to click the
"header" o
Hi am asking somthing like yahoo , not an this, this one small example for
show and HIDE DIV,
when i click the reply link, it should show the reply, reply to all ,
these link hide , when i click the reply link as well as anywhere in the
page , u got it,
Thanks
n
You Can use following code..
You Can use following code...
$(document).ready(function() {
$('#list1').hide();
$('#list').show();
$("#btn .btn1").bind("mouseover", function(){
$('#list').show("slow");
$('#list1').hide();
});
$("#btn1 .btn2").bind("mouseover", function(){
$('#list1').show("slow");
$('#list').hide();
});
Hi All
Can some one send example snippet for
Show DIV
and Hide DIV in Body On click,
I have some snippet, but that are not full fill my need,
Exact example for clear view is in yahoo classic reply and reply-to-all ,
--
உங்கள் நண்பன்
பரணி குமார்
Regards
B.S.Bharanikumar
POST YOUR OPINION
55 matches
Mail list logo