I've been looking for a plugin to be able to use the mouse and
eventually the iphone to flick and navigate through a page.
Does anyone know if there are examples that exist currently. I think
i'd probably have to implement it using the scrollTo plugin to do the
scrolling.
With luck i was able t
Hi,
How can I bind this function to all image tag ?
var img_width = $('#slide img:visible').width();
var frame_width = $('#slide img:visible').parent().width();
var target_width = (frame_width-img_width)/2;
$('#slide img:visible').css({'left':target_width});
appr
First, a thousand pardons! I see several threads that kinda' address
my question, but they're all a little over my head.
On the makeGreen function below, is this an acceptable way to
implement an internal function? If I'm guessing right, we're operating
on an object, so arguments are passed by re
Thanks for your response ,
In my application i dont want default checked = checked ,
Then how i do Peter ,
Thanks
There are a few ways to do this.
You can select by class, in which case you give a group of checkboxes the
same class
$(function(){
// attach a click event to each checkbox whose
I want to align an absolute positioned image horizontally center
inside its parent element.
Is there any script or guide to do that ?
Hi everyone.
I am wondering how I can make a fade between two photos in the
background of a body of text and then have the photos change every
other photo (if that makes sense).
Thanks for any help.
Thanks waseem...you've put me on the right track!
On May 11, 12:23 pm, waseem sabjee wrote:
> actually it might work
>
> var obj = $("#mdiv select");
>
> for(var i=0; i < obj.length; i++) {
> obj.eq(i)
>
> }
>
> // the above method will get alll tags within a tag and loop
> then
>
> if y
Hi,
i'm using this jquery color picker:
http://www.eyecon.ro/colorpicker/
on my page here: www.akbars.net/eurisko/basic.html
but i can't seem to position it in the toolbar with the rest of the
buttons - its always on a new line...
any suggestions?
thanks
imran
On May 14, 5:17 am, sebastien creme wrote:
> Dynamic colspan setted via style property seems not work on IE.
For some reason, jQuery currently maps rowspan->rowSpan, but not
colspan->colSpan.
http://dev.jquery.com/ticket/4397
Matt Kruse
I wonder if this demo will give you some ideas:
http://jqueryui.com/demos/sortable/#connect-lists-through-tabs
It's sortable lists that are connected even though they're on separate tabs.
If you decided to do something like this and need some help, here would be
the place to ask:
http://groups.g
Got that sorted, now for something tougher.
Say I have two seperate accordions in two areas of a page (two
seperate tabs), can I make items movable between those two accordions.
Basically each accordion draw hosts a seperate tool my coworkers and I
use daily, however every person uses a different
yep, took me a while to realize that :)
Implemented the extra layer of divs and its working great!
Thank you so much!
UL-LIs was for the tabs above, not involved, my mistake :)
--- On Fri, 5/15/09, Richard D. Worth wrote:
From: Richard D. Worth
Subject: [jQuery] Re: Sortable accordion-like w
What UI-LI objects? Your sample code (which I added an extra div level to)
only has DIVs and H3s.
- Richard
On Fri, May 15, 2009 at 2:21 PM, Danny Nolan wrote:
> Almost, I found it worked almost, except for the fact that the sortable
> affected only the UL-LI objects, the contents were static. H
Thanks James, I appreciate your explanations. After some fumbling
around I got it work with basically the same thing:
billing_first: {
required: function() {
return
$("[name=billing_addr]:checke
Link?
On Fri, May 15, 2009 at 12:00 PM, rui wrote:
>
> I've just installed this extension, but i'm having some problems.
>
> Need to implement a horizontal menu style in user4, or user 3
> positions on rhuk_milkyway template.
>
> When the menu drops down, it's not visible.
>
> what can i do?
>
>
On Fri, May 15, 2009 at 2:23 PM, brian wrote:
>
> Someone else came across the same problem just last week. I wonder if
> a recent update introduced this bug.
> http://forums.shopplugin.net/topic/order-by-list-and-ie-8-popup-blocker
>
My partner just opened that link and pointed out that the sol
One possible goal is to make it so that a second getList() call would
not be executed until the first is completed/failed. You can set aside
a variable that holds a status. getList() can update that status
before and after the call, and also does a check on that variable
every time it's executed t
Let me be more specific, this is the code I have:
$(function() {
$("#accordion1").addClass("ui-accordion ui-widget ui-helper-reset")
.find("h3")
.addClass("ui-accordion-header ui-helper-reset ui-state-default
ui-corner-top ui-corner-bottom")
.prepend('')
.hover(fun
On Fri, May 15, 2009 at 1:22 PM, brian wrote:
> On Fri, May 15, 2009 at 9:03 AM, Liam Byrne wrote:
>> Is it possible that IE7 & 8 see "html" as a reserved word ?
>>
>> Try changing the hmtl variable in both function(html) and
>> $('#nav_admin').html(html) to something else
>
> No, there's no dif
Almost, I found it worked almost, except for the fact that the sortable
affected only the UL-LI objects, the contents were static. How to get past that?
--- On Fri, 5/15/09, Richard D. Worth wrote:
From: Richard D. Worth
Subject: [jQuery] Re: Sortable accordion-like widget
To: jquery-en@google
Try using tools like the Web Development toolbar add-on for Firefox to
debug. Under "Information > View Javascript", you can view all of the
Javascript that is loaded on the page, such as maybe other Javascript
libraries that are overriding the $ variable.
This will help you see what Javascript is
Try changing it so it's:
required: function() { return $("[name=billing_addr]:checked").val()
== 0; }
and remove your click binding function.
This makes the radio check done on runtime.
Doing: return billing_address == 0;
will probably only evaluate "billing_address" when the rules are
defined
The main jQuery file need to be included before you include any
scripts.
Reorder your script tags to put jQuery.js before
jquery.brenelz.equalHeight.js.
Also I would recommend using 1.3.2 version of jQuery.
On May 15, 8:05 am, "mylessincl...@googlemail.com"
wrote:
> Just a quick update. I've m
If you cannot change the scrolling by modifying the iframe, then do it
by modifying the document inside the iframe.
I don't remember the syntax for accessing the document/body elements
inside an iframe, so I'll just use pseudo-code here. You should be
able to find the correct syntax easily...
$(
This is assuming "#second" is a tag
$("#second").clone().after('#second');
http://docs.jquery.com/Manipulation
On May 15, 12:48 pm, ScottChiefBaker wrote:
> Do you know if you can clone() and then appendTo() a
>
> http://www.perturb.org/tmp/test.html
>
> I want to something like
>
> $("#sec
On Fri, May 15, 2009 at 9:03 AM, Liam Byrne wrote:
> Is it possible that IE7 & 8 see "html" as a reserved word ?
>
> Try changing the hmtl variable in both function(html) and
> $('#nav_admin').html(html) to something else
No, there's no difference. There's also no request made to the server,
in
Hi,
I have a web page which contains a legacy ActiveX control (I know...)
and am having a problem with the ClueTip plugin. Whenever a tooltip is
displayed which should obscure the ActiveX it instead is drawn behind
the ActiveX control. I have tried setting the value of cluezIndex to
1000, and als
I am looking to use the Coda Slider plugin, but instead of the Sliding
effect, I'd like to make it fade in-between slides instead. I have
found a couple discussions that you can use onbefore or the onafter
parameters to accomplish this but nobody has listed a definite
solution to this.
Here is th
I am loading an XML doc with the jQuery ajax call and then trying to
search it using this statement.
var myRow = $(myXML).find('Cell:contains(0100)')
This works just fine in FireFox and Chrome but I get 0 results in IE
Can someone suggest an alternate way to accomplish this same search
that wor
I've just installed this extension, but i'm having some problems.
Need to implement a horizontal menu style in user4, or user 3
positions on rhuk_milkyway template.
When the menu drops down, it's not visible.
what can i do?
Thanks and regards
Rui
I'm trying to use the jquery form plugin to post form data to a mysql
database. At the same time, I'm loading another page in which I need
to use the mysql_insert_id(). How can I get that ID number and send it
to my page I'm loading. I'm trying to post it to a Javascript var but
I don't know how I
$("#Form").validate({
rules: {
storename_name: {
required: true,
remote: {
url:
"/intranet/trunk/app/index.php/st
Do you know if you can clone() and then appendTo() a
http://www.perturb.org/tmp/test.html
I want to something like
$("#second").clone().appendTo('#second');
It works, but it doesn't render like I want it to. I want it to be a
NEW
row. Any ideas?
- Scott
is jquery.js included on page and is it loading (ie is path valid to
jquery.js)?
heldtogether wrote:
Hi,
I want to try incorporate jquery in my site, but I'm having some
problems. The site is drawn together from various files in PHP. I have
added the jquery script which I would expect to
Change to a standard radio group?
--- On Fri, 5/15/09, bharani kumar wrote:
From: bharani kumar
Subject: [jQuery] how to uncheck the check box
To: jquery-en@googlegroups.com
Date: Friday, May 15, 2009, 9:38 AM
Hi all
Can u tell me , how to uncheck the check box , when i check another check bo
Thanks James I appreciate you replying. I'm still having some
trouble, even with your additions. I changed the checkbox to radio
buttons. I added this code snippet to get the value of the checked
radio. Yes == 1 and No == 0, if the user selects No (0) then the
billling address fields need to be
Sure, here you go:
http://jsbin.com/aqeca
You can edit this example here:
http://jsbin.com/aqeca/edit
It's not perfect, since when you sort one, it also toggles it, but it's a
start.
- Richard
On Fri, May 15, 2009 at 10:19 AM, Danny Nolan wrote:
> Example? Im very new to jQuery, the old code
If you absolutely must use a checkbox you could do the following:
when you click on a check box, set the "checked" attribute of the other
checkboxes in the same group to ""湴
cheers
Michael Lawson
Development Lead, Global Solutions, ibm.com
Phone: 1-828-355-5544
E-mail: mjlaw...@us.ibm.com
'Exa
HI Eric,
I'm lost on that. I've tried many different variations and now feel
like crying.
Great script :) but poor documentation :(
I'll keep trying
On May 15, 3:53 pm, elubin wrote:
> where is the until2d object?
>
> eric
I'm really interested in this too. The docs say there is a rewrite
coming to the history plugin that will bring forward/back back into
the functionality by default. So i don't know of any other way for
this to work
On May 1, 4:40 pm, DB wrote:
> Has anyone been able to get back button history
Thanks for all the insight and advice. Thanks also for not being smug
like many bloggers/posters. I actually used jQuery-lightbox.0.5 which
works/plays well with the older interface.js and Voila! Problem
solved. Again, you guys are a huge help and I appreciate it!
jmCom
Is this what you're looking for?
$("a:not[href^=http]").each(function(){
var ext=$(this).attr("href").match(/\.[^\.]*$/);
if (ext) $(this).after("("+ext.slice
(1)+")");
} );
On May 15, 8:09 am, infoaddicted wrote:
> This calls for a function, where you can hide the gory details. Use a
Works fine for me:
http://jquery.malsup.com/cycle/pager4.html
http://jquery.malsup.com/cycle/pager8.html
On May 15, 8:52 am, MVimmer wrote:
> I checked your website :http://jquery.malsup.com/cycle/int2.htmland
> it seems that when you use the pager, the class doesn't change there
> as well.
There are a few ways to do this.
You can select by class, in which case you give a group of checkboxes
the same class
$(function(){
// attach a click event to each checkbox whose class is 'onechecked'
$(':checkbox.onechecked').click(function(){
// if the clicked checkbox is checked (no ne
This works, but is there no better way?
$.each(opts.button, function(i, n){
var func = n.click;
delete(n.click);
var button = $('')
.attr(n)
.click(func);
$("#rtfButtons").append(button);
});
Hi,
I'm trying to implement a client side cache for an ajax based
application but I'm not sure how to deal with the asynchronous nature
of ajax calls in jquery. What I'm basically trying is to create a
function getList() that fetches a snippet of text from the server and
stores it in a variable so
Hi,
I am trying to use the plugin tablesorter that has a pager, for one
table in a page it works fine, but when I put two tables, the pager
links [next, previous,] for the first table is moved under the
second table.
Please your help is appreciated.
http://www.w3.org/TR/xhtml1/DTD/xhtml1-t
Hello,
I am trying to use jCarousel in my php script to show all records on
the same page. like this
http://sorgalla.com/projects/jcarousel/examples/static_simple.html
I have form where user has to logged in and then on his/her page he/
she can see these record. i have page where user is logged
While
$("li a").hover(function(){
$(this).addClass("move");
}, function() {
$(this).removeClass("move");
});
works well in theory, I've found that
$("li a").hover(function(){
$("li a").removeClass("move");
$(this).a
what about that ?
$("li a").hover(function(){
$(this).toggleClass("move");
});
On May 15, 4:42 pm, Jthomas wrote:
> Hi Calvin,
> I think what you're looking for is something like this, as James said.
>
> $("li a").hover(function(){
> $(t
This calls for a function, where you can hide the gory details. Use a
selector to gather up the "a" elements, and pass that as the argument
to the function.
pseudocode:
var linksToChange = JQuery Selector;
function changeLinks( linksToChange ){
either:
a "for" loop to step through t
Just a quick update. I've managed to get this working now, although
having problems trying out a different script. I'll keep trying before
coming back for help!
Many thanks,
Myles
On May 15, 8:17 am, "mylessincl...@googlemail.com"
wrote:
> Hi,
>
> You're right, I didn't give enough information
"Keep in mind this recursively calls attr( key, value ) or attr ( key,
fn ), so if one of the properties you are passing is a function, the
function will be evaluated and not stored as the attribute itself."
Question:
The function should NOT will be evaluated...
Any idea?
Thanks!
Looking for a freelance developer who knows the in's and out's of
jquery's jgrid very well.
Must be onsite here in Branford, CT.
Please email me with per hour rate at:
rdwyer...@gmail.com
where is theuntil2dobject?
eric
Instead of .attr('onblur'. fn)
Try .blur(fn)
Tobeyt23 wrote:
This works great in firefox, why doesn't this work in any other
browser? Can the attribute onblur be added another way to work in all
browsers?
jQuery('#'+nameHex[0].replace(' ','__')+'_qty #'+fields[c].id).attr
('onblur' ,'setQtys
add a click handler to each checkbox (you could use a selector and
loop through with $.each). when clicked, the function could use the
same selected and loop through again making sure the others are off.
Eric
On May 15, 10:38 am, bharani kumar
wrote:
> Hi all
>
> Can u tell me , how to unche
bharani kumar wrote:
Hi all
Can u tell me , how to uncheck the check box , when i check another
check box,
for example
having 4 check boxes,
be default check box is checked ,.
when i check the check box 2 , then need to uncheck the checked one ,
How to do this in jquery ,
Thanks
Maybe
Hi Calvin,
I think what you're looking for is something like this, as James said.
$("li a").hover(function(){
$(this).addClass("move");
}, function() {
$(this).removeClass("move");
});
Of course, include document ready function.
-Jon Thoma
Hi all
Can u tell me , how to uncheck the check box , when i check another check
box,
for example
having 4 check boxes,
be default check box is checked ,.
when i check the check box 2 , then need to uncheck the checked one ,
How to do this in jquery ,
Thanks
--
உங்கள் நண்பன்
பரணி குமார்
bump
You can avoid this conflict altogether (and reduce downloads
considerably) using slimbox or thickbox
http://www.digitalia.be/software/slimbox (lightbox clone for jQuery)
http://jquery.com/demo/thickbox/ (can use to achieve lightbox effect,
but much more versatile - can handle anything - not j
Example? Im very new to jQuery, the old code was partially provided by someone
else with a few edits, so not sure how to create that new level you was talking
about.
--- On Thu, 5/14/09, Richard D. Worth wrote:
From: Richard D. Worth
Subject: [jQuery] Re: Sortable accordion-like widget
To: jq
Alright, Incase anyone stumbles into this looking for an answer you
can try the following:
I updated to the latest version of UI and found that the dialog loaded
without my html form. So, I simply removed the height option and
everything loaded just fine in IE. FF appeared to not be affected by
t
Hy
My jQuery-Plugin shoud produce two buttons with a onclick-event.
Problem:
The onclick-event got fired, when I call the plugin, without clicking
on the button.
Why got the click-event fired without clicking the button?
Here my (shorted) plugin:
(function($) {
$.fn.rte = function(opt
There is a problem with loading prototype and jquery on the same
page. One trick that you can do is bulk replace in interface.js the
'$' with 'jQuery'. Update all your scripts that use jQuery to replace
the '$'.
Also, remember that on your pages to use 'jquery' rather than '$' when
referencing
On May 15, 3:24 pm, "ryan.j" wrote:
> as rob said, unless the OP is using the anchor's class itself in
> conjunction with some other jquery selector at that point, the OP
> would be better off just using :hover.
>
> jquery is awesome, but using it to do stuff CSS already does better is
> conside
> This works great in firefox, why doesn't this work in any other
> browser? Can the attribute onblur be added another way to work in all
> browsers?
>
> jQuery('#'+nameHex[0].replace(' ','__')+'_qty #'+fields[c].id).attr
> ('onblur' ,'setQtys();');
jQuery('#'+nameHex[0].replace(' ','__')+'_qty
Hi,
I'm messing with http://keith-wood.name/countdown.html I must say it's
a very nice script and heads up to anyone who can get it to work.
I'm trying to get the basic script to run and countdown for 2 days
like in the relative example
Here's the last piece of code which is way out, any help a
Hi All!
I am looking for JavaScript gurus for 4-6 month contract or full-time
position. Please send me your resume if you are guru and interested.
Best regards
Alex
Hi,
I want to try incorporate jquery in my site, but I'm having some
problems. The site is drawn together from various files in PHP. I have
added the jquery script which I would expect to work fine regardless
of the PHPness earlier because it is a client side script.
Unfortunately nothing happens
This works great in firefox, why doesn't this work in any other
browser? Can the attribute onblur be added another way to work in all
browsers?
jQuery('#'+nameHex[0].replace(' ','__')+'_qty #'+fields[c].id).attr
('onblur' ,'setQtys();');
as rob said, unless the OP is using the anchor's class itself in
conjunction with some other jquery selector at that point, the OP
would be better off just using :hover.
jquery is awesome, but using it to do stuff CSS already does better is
considerably less awesome.
On May 15, 9:22 am, RobG wr
Is it possible that IE7 & 8 see "html" as a reserved word ?
Try changing the hmtl variable in both function(html) and
$('#nav_admin').html(html) to something else
L
brian wrote:
On Thu, May 14, 2009 at 10:14 PM, brian wrote:
I have a wee bit of code that handles a select list change to
Think of it logically.
To animate a property, the computer needs to work out the in-between
stages (tweening) to show:
e.g animate width from 10 to 20 = 11,12,13,14, etc
to animate opacity from 40% to 100% = 41%, 42%, 43%, etc
You can also animate colours*, because behind-the-scenes they
I checked your website : http://jquery.malsup.com/cycle/int2.html and
it seems that when you use the pager, the class doesn't change there
as well.
Hi Mike,
I created slide-show and want to use the pager with auto-transition.
So the images will transition, but the user will also have the option
to click on a different images. For some reason, when the slideshow
works in a auto mode, the "activeSlide" class doesn't update and
changes to the a
Hi,
I've got Superfish set up and running fine, except that the shadow.png
isn't showing in Firefox or IE - can't work out why the hell not!
Sorry for the noobieness...
Cheers in advance,
iFlicks
www.i-flicks.net
Here's the CSS: www.i-flicks.net/superfish.css
Thanks for your example. Now its working like it should :-D
On 5/14/09 8:58 AM, "Ulf Renman" wrote:
> When typing data into the autocomplete-field the list of matches is updated
> at every key pressed.
> Is it possible in any way to check and correct the data before doing the
> match. Or could you alter the way the match is done.
>
> The perfect example
You need to add "return false" to your submit handler.
$('form').submit(function() {
// do ajaxy stuff
return false;
});
On May 15, 2:25 am, Nahaz wrote:
> I can check that, but as I said before, it works perfectly fine on my
> local webserver, it's when the script is run on my webhost
> So here is finally my problem. I can just get numbers or bools of this JSON
> document. When i am trying to get a string e.g. nothing happens. No fanncy
> things, and no errors in my firebug console. I think its a problem with the
> each() function. I tried everything i could imagine till now.
> Thanks for your help the issue is solved. One question to Mike: on the
> jqery site the newest version is 2.34, why did you not put your actual
> version 2.63 - the one that solved my problem - to the jquery site?
Fair question - sorry about the confusion. I don't update that page
very often b
Hey Ricardo,
I thought this might be the case. Nothing to clarify on the jQuery
website that I could find. Thanks for the tip - I'll bear that in mind
for the future.
Cheers,
L
On May 14, 11:25 pm, Ricardo wrote:
> dude, you can't animate from inline to block. For any width/height
> animation
Hello, all. I am a fairly new web designer and I have the following
attached scripts on my page. Alone, they (lightbox and jQuery/
interface) work great. But together, depending on their order in the
, I get one to work but not the other. Can anyone tell me if I
am seriously missing something
Hi Dude,
below is the solution for it:
lets say ajax load page contains
Close Ajax
And on parent page implement this code:
CloseAjaxPage = function(){
$("#modalClose").click();
}
I hope this is clear
Please let me know if u have any issues
Happy JQuerying..
Hello, all. I am a fairly new web designer and I have the following
attached scripts on my page. Alone, they (lightbox and jQuery/
interface) work great. But together, depending on their order in the
, I get one to work but not the other. Can anyone tell me if I
am seriously missing something
Hi Folks,
i have a big roblem with a little getJSON request. At first..this is my
code:
=== HTML ===
dicken ajax-request ausführen!
=== JavaScript ==
$(function(){
$("button").click(function(){
$.getJSON("myJson.js", myCallback);
function myCallback (jsonObje
On May 15, 2009, at 6:49 AM, Tony wrote:
Hello,
Currently It is not possible to put the add/edit/delete in one form.
That's going to be problematic.
Thank you though for clarifying.
--Rick
Regards
Tony
On May 15, 12:01 am, Rick Dwyer wrote:
Hello List.
Playing around wi
Hello,
Currently It is not possible to put the add/edit/delete in one form.
Regards
Tony
On May 15, 12:01 am, Rick Dwyer wrote:
> Hello List.
>
> Playing around with jqgrid and the documentation describes the
> implementation of bSubmit and a bCancel button.
>
> However, how do I display a Su
On May 15, 5:22 pm, Karthikraj wrote:
> But CSS :hover will not work in IE6. So better use script
Rubbish. The OP wants to use it on an A element, which
supports :hover in probably every browser since Navigator and IE 4, if
not older.
--
Rob
:hover does work in IE6, it's just limited to elements.
Jonathan
Karthikraj wrote:
But CSS :hover will not work in IE6. So better use script
On May 15, 9:26 am, RobG wrote:
On May 15, 11:35 am, Calvin wrote:
Hi,
I was able to get this script to work and was wondering if there wa
$(function() {
$("#myid").hover(function() {
// when mouse is over element
}, function() {
// else
});
});
On Fri, May 15, 2009 at 9:22 AM, Karthikraj wrote:
>
> But CSS :hover will not work in IE6. So better use script
>
> On May 15, 9:26 am, RobG wrote:
> > On May 15, 11:35 am, Calvin
Hi,
use createCookie(key, value) method to store value in cookie.
to fetch the stored value in cookie use readCookie(key); method.
Karthik.
On May 14, 11:10 pm, KD wrote:
> Hi, I'm using Wordpress and each post will have a table. I'm using
> the following script to allow users to highlight a
But CSS :hover will not work in IE6. So better use script
On May 15, 9:26 am, RobG wrote:
> On May 15, 11:35 am, Calvin wrote:
>
> > Hi,
>
> > I was able to get this script to work and was wondering if there was
> > a better/proper/more efficient way of writing it. Here is the script:
>
Hi,
You're right, I didn't give enough information. Sorry, just a bit of
panic setting in on my part! The script works locally on my PC, so
here is what I've done -
I have created a Wordpress theme called "test" inside of which is a
folder called js. This folder contains two files - jquery-1.2.
96 matches
Mail list logo