Thanks!!
On Oct 29, 7:59 pm, ricardobeat <[EMAIL PROTECTED]> wrote:
> $("button#hide-btn") selects nothing, it's an input element not a
> button. There is a ':button' pseudo-selector in jQuery, but if you are
> selecting by ID the tag name is unncessary and may even be slower.
>
> $('#hide-btn')
my carousel has both external control and next/prev arrows. i would like to
be able to add a class to the external control that corresponds with the
visible li.
this is how i'm building my navigation links:
// build links
dmlees wrote on 10/29/2008 8:56 PM:
> My web hosting service said they think gzip compression is enabled.
You can check. Load your javascript file directly, then use Firebug > Net to
inspect the headers, or the Web Developer add-on for Firefox use the "View
Response Headers" -- either way, if
You should be attaching your click bind to the anchor element not the
list element, since thats whats going to be firing the event.
On Oct 30, 1:18 pm, Info <[EMAIL PROTECTED]> wrote:
> Hello All,
> I have a CSS list that I use as my navigation. Each LI has a
> background image as the base and a
My web hosting service said they think gzip compression is enabled.
Does that mean that all my javascript files are being gzipped on the
server in such a way that when they get to my browser, they are
processed correctly? If so, then I don't have to do anything to reduce
the size of jquery 1.2.6 m
Just cleared my cache and it looks like it works as long as the large
image is loaded. Man... Thanks dude. I seriously spent hours working
on this and all I needed was the newest version of cycle!
Thanks a million Mike. You are a pro.
TR
On Oct 29, 6:46 pm, Mike Alsup <[EMAIL PROTECTED]> wrot
> http://megperotti.com/weddings/index_weddings.php
>
> I just updated the cycle js and it seems the same.
>
> Thanks Mike.
The thumbs are working for me. Did you do a hard refresh on your
browser after updating the plugin file? I tried each of the 10 static
thumbs that you have and they all wo
See the following for deails:
http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_stop_working_after_an_AJAX_request.3F
Karl Rudd
On Thu, Oct 30, 2008 at 1:27 AM, Martin Sarsini <[EMAIL PROTECTED]> wrote:
>
> Hi to everyone
> I am having problems with appended code generated fro
Hello All,
I have a CSS list that I use as my navigation. Each LI has a
background image as the base and a a:hover image for roll over. Within
the LI item for the navaigation I have a ahref that is used to fire
off some jquery function. All this worksnow I want to change the
LI item to another
http://megperotti.com/weddings/index_weddings.php
I just updated the cycle js and it seems the same.
Thanks Mike.
On Oct 29, 6:13 pm, Mike Alsup <[EMAIL PROTECTED]> wrote:
> > Thanks Mike - That helped out a lot. I have worked myself into a new
> > problem...
>
> > Now my thumbnails can't tar
> Thanks Mike - That helped out a lot. I have worked myself into a new
> problem...
>
> Now my thumbnails can't target the images. Using the standard pager
> functions I was targeting images in the cycle but now only the first
> three thumbnails will work (since I am loading three images in the
>
Hi all,
I would just like to thank you all in advance for taking time to help
me.
I am using ...
Autocomplete - jQuery plugin 1.0.2
Revision: $Id: jquery.autocomplete.js 5747 2008-06-25 18:30:55Z
joern.zaefferer $
In IE7 and Mozilla, the autocomplete works fine.
When I use IE6, the item belo
Thanks Mike - That helped out a lot. I have worked myself into a new
problem...
Now my thumbnails can't target the images. Using the standard pager
functions I was targeting images in the cycle but now only the first
three thumbnails will work (since I am loading three images in the
HTML and the
So I thought I would be a bit tricky with this CMS we have at work and
remove some of the rubbish CSS style sheets that it spits out. jQuery
to the rescue.
var cssRemove = "limbo.css";
$("link").each(function(){
if ($(this).attr("href").match(cssRemove))
$(this).remove();
Let's forget jQuery for a moment and reword the question slightly...
I've written a couple of functions named one and two:
function one() {
alert( 'one!' );
}
function two() {
alert( 'two!' );
}
Somewhere else there is code that calls function one. I don't know
generally you dont actually gzip the js files, you enable gzip compression
on the server and it does it automatically setting the appropriate headers
on the http response so that the client knows to un-gzip.
On Wed, Oct 29, 2008 at 3:02 PM, dmlees <[EMAIL PROTECTED]> wrote:
>
> I gzipped the lat
I'm using attr('title') to find the title of the first anchor in a
list and then make that title the value of an alt tag for an image.
$('#imageswap a:first').attr('href', function(){
var altName = $(this).attr('title');
$('#productimage').append('');
Hi Erik, try to remove all the mootools.js, probably there's a conflict.
Diego
--- Mer 29/10/08, ricardobeat <[EMAIL PROTECTED]> ha scritto:
Da: ricardobeat <[EMAIL PROTECTED]>
Oggetto: [jQuery] Re: Need help !!! $.preloadCssImages is not a function
A: "jQuery (English)"
Data: Mercoledì 29 otto
Hi,
I would like to execute instructions after an event has been fired and
processed:
$('#int').click(); // I fire click event, callback function will be executed
// Execute other instructions after the callback fct of the click event has
been processed
The problem is, how do I know when the c
Hi Ricardo,
ricardobeat wrote:
You don't need a plug-in to do that:
$('head')
.append('')
.append('')
Using the above method (or taconite) I've noticed that JQuery does not
actually append the
Thanks Ricardo, I will give this a try!
On Oct 29, 3:38 pm, ricardobeat <[EMAIL PROTECTED]> wrote:
> $('#form').triggerHandler('submit') triggers all handlers without
> executing the default action, but I don't know if that would work with
> inline event handlers.
>
> - ricardo
>
> On Oct 29, 5:5
$('#form').triggerHandler('submit') triggers all handlers without
executing the default action, but I don't know if that would work with
inline event handlers.
- ricardo
On Oct 29, 5:57 pm, Nic Hubbard <[EMAIL PROTECTED]> wrote:
> Now, I know that I could do this with the jquery form plugin, but
Should work, are you calling the function on DOM ready?