> Maybe you can bind a mouseover event to the map areas, that would do nothing
> but return false. This may keep the mouseout from firing when you mouseover
> an area --
Alreadt tried it too :(
I'll try to put a test case online
--
Fabien Meghazi
Website: http://www.amigrave.com
Email: [EMAIL
If you're able, it'd be nice to know a bit more about the project,
otherwise any advice will be extremely generic.
At the very least, what do the JavaScript parts do? Is it just "eye
candy"? Is there AJAX involved? Do you use any fancy widgets?
Karl Rudd
On 9/21/07, Steve Finkelstein <[EMAIL PR
Hi all,
So we all obviously know why jQuery is better than prototype,
otherwise we wouldn't be here. I use jQuery for all of my personal
projects, but unfortunately I'm stuck with prototype in my day job. We
do have a rather complex piece of software, and I'd have to go through
a lot of code in o
Mike,
Would you mind elaborating on this ?
"Well, not exactly, but it does put the onus on you as the user to clean
up your cache before page unload."
What should I do to clean up the cache before page unload? I use BlockUI
for a bunch of things, so am curious.
Thanks,
Jack
Mike Alsup
Hi,
I load a dynamic response from server with this code:
$(document).ready(function() {
$('.editPlayList').click(function(){
$('#targetList').empty();
var qLink = $(this).attr('href');
$('#targetList').load(qLink);
I don't know when Ritesh is planning to update is plugin, but my
modification of it that allows for half-star ratings is working with
1.2.1:
http://www.learningjquery.com/2007/05/half-star-rating-plugin
--Karl
_
Karl Swedberg
www.englishrules.com
www.learningjquery.com
On
Thanks for the info, Charles!
Yes, the info is quite over my head as jQuery is my first experience
with Javascript, and I only started with jQuery a couple of months ago.
I'll keep your pointers on file if I ever get an opportunity to
develop an app that I've been considering for my area.
Thank
On Sep 20, 5:23 pm, "Brook Davies" <[EMAIL PROTECTED]> wrote:
> How do you keep your source files organized and the process of combining and
> packing them to release any changes or bug fixes orderly?
What i do is use a PHP file as an intermediary so that i can use gzip
compression on them:
js.p
Those MooTools punks stole our filesize!
--Erik
On 9/20/07, Josh Nathanson <[EMAIL PROTECTED]> wrote:
>
>
> OK, sorry about that. Weird though that it's also 27K packed.
>
>
> - Original Message -
> From: "Michael Geary" <[EMAIL PROTECTED]>
> To:
> Sent: Thursday, September 20, 2007 4:0
>
> I've faced the same frustration. Why not just hide the displayed div
> rather than removing it from the DOM? This would be my preference as
> well. Perhaps as an option.
Yeah, I should refactor it to behave that way; that makes good sense. Sorry
for the frustration!
> Does the example crea
On 9/20/07, Kirk Cerny <[EMAIL PROTECTED]> wrote:
>
> I am not an expert either but:
> 2 XML connections open for the same domain.
> You can get many connections open by changing the domain.
> xml.domainname.com
> xml2.domanname.com
> You can accomplish this using the domain property of the docume
Hi.
I was trying to cull out just the pertinent code, so that's why the
calling method, etc. seems truncated. Alas (and I wish I could) I
can't post the whole thing, which I know would be more useful.
All of the methods are part of jDemon.
You're right, I don't know what "this" means. I was mod
OK, sorry about that. Weird though that it's also 27K packed.
- Original Message -
From: "Michael Geary" <[EMAIL PROTECTED]>
To:
Sent: Thursday, September 20, 2007 4:05 PM
Subject: [jQuery] Re: Verizon Wireless website using jQuery?
From: Josh Nathanson
Spotted in the wild?
-
Very cool, jQuery is showing up everywhere!
Unfortunately, the Store Locator does not locate any stores for me, no
matter what I ask it. Regardless...
Rick, the way to create a store locator from Google Maps is a pretty
easy process, once you learn how to leverage the powerful API. I
created a
> From: Josh Nathanson
>
> Spotted in the wild?
>
> - Go to http://www.verizonwireless.com
> - Look at your Firebug Script tab, find the script "gn_engine.js"
>
> That packed script looks suspiciously familiar...and it's 27K
>
> ?
As Erik mentioned, every script run through the old versio
That script is how everything looks when it's run through Packer.
Though it has the tell-tale $events object, it doesn't have the global
jQuery object. Ah, there's a global "MooTools" object. I'd say it's MooTools
:)
--Erik
On 9/20/07, Josh Nathanson <[EMAIL PROTECTED]> wrote:
>
>
> Spotted in
Nope, it's MooTools.
--John
On 9/20/07, Josh Nathanson <[EMAIL PROTECTED]> wrote:
>
> Spotted in the wild?
>
> - Go to http://www.verizonwireless.com
> - Look at your Firebug Script tab, find the script "gn_engine.js"
>
> That packed script looks suspiciously familiar...and it's 27K
>
> ?
>
Spotted in the wild?
- Go to http://www.verizonwireless.com
- Look at your Firebug Script tab, find the script "gn_engine.js"
That packed script looks suspiciously familiar...and it's 27K
?
Hey I haven't released that code yet! :p Yeah, the new dimensions is tiny
... just 1k using min+gzip. And you only need to include the new dev version
of dimensions if you still want to use the scrollTop/Left,
innerHeight/Width, outerHeight/Width, position or offsetParent. All the rest
of the func
Maybe you can bind a mouseover event to the map areas, that would do nothing
but return false. This may keep the mouseout from firing when you mouseover
an area --
$("area").mouseover(function() {
return false;
});
- Original Message -
From: "Fabien Meghazi" <[EMAIL PROTECTED]
> Try adding "return false;" -
Already tried too
--
Fabien Meghazi
Website: http://www.amigrave.com
Email: [EMAIL PROTECTED]
IM: [EMAIL PROTECTED]
Try adding "return false;" -
$("#myimage").bind("mouseout", function() {
console.log("Hello")
doStuff();
return false;
});
-- Josh
- Original Message -
From: "Fabien Meghazi" <[EMAIL PROTECTED]>
To: "ML:jQuery"
Sent: Thursday, September 20, 2007 3:13 PM
Subject: [jQuery] Image + map
Hi all,
I've got an image with a map area defined for it. Eg:
...
I've got a mouseout event binded to the image itself :
$("#myimage").bind("mouseout", function() {
console.log("Hello")
doStuff();
});
My problem is that when the cursor is over an area in
I noticed in SVN that Brandon had updated the Dimensions plugin after
the release of jQuery 1.2, so I updated to the latest code in SVN
because it is MUCH smaller in size.
But now the jqDnR plugin has issues in IE6 and IE7. When you start
dragging the element, the element's position is way off.
Was just browsing the jQuery UI on the iPhone using Edge and it was
running pretty smooth. I would attribute any slow down to the fact
that I was on Edge. Still need to try it on Wi-Fi to know for sure.
Good article though on how to develop for the iPhone, i know Facebook
did a good job with thi
Answered my own question
http://www.mathias-bank.de/2007/04/21/jquery-plugin-geturlparam-version-2
Sorry,
Glen
On 9/20/07, Glen Lipka <[EMAIL PROTECTED]> wrote:
>
> Is there a plugin to get all of the URL parameters and make them
> variables?
> (assuming its not already built in?)
>
> Glen
>
Is there a plugin to get all of the URL parameters and make them variables?
(assuming its not already built in?)
Glen
yeah I answered my own question! Here is the solution
try {
$("#user").focus();
} catch(err){
return false;
}
On Sep 20, 1:37 pm, njsuperfreak <[EMAIL PROTECTED]> wrote:
> Benjamin,
> thanks for you response.
> Okay I have a login form with a input fie
Hey there is a good article to be read at A List Apart:
http://www.alistapart.com/articles/putyourcontentinmypocketpart2
I guess Javascript renders much slower on the iphone.
I bet jQuery performs like a rock-star on the iPhone though.
Hi there,
I am trying to create a live search by filtering through XML.
The XML structure is as follows:
1
Joe Bloggs
7B
7
2
John Doe
7B
7
I believe you'd want the change handler.
$("select").change(function() {
//do some stuff here...
)};
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of hobbit
Sent: Thursday, September 20, 2007 1:22 PM
To: jQuery (English)
Subject: [jQuery] NEW
sgrover schrieb:
Thanks Jorn. It took me a bit to get to it, but that fixed a bunch of
minor problems with our tree.
A couple of questions though:
1. Is there a way to apply a class to the current tree node? (visual
indicator of where the visitor is). I looked at the library, but am not
Thanks Jorn. It took me a bit to get to it, but that fixed a bunch of
minor problems with our tree.
A couple of questions though:
1. Is there a way to apply a class to the current tree node? (visual
indicator of where the visitor is). I looked at the library, but am not
familiar with the s
I'm working on a unidirectional carousel that makes ajax calls to load
more elements to be displayed.
In my "pane", I'm displaying 4 elements (of class .item) in a queue
(called .my_queue).
| [] [] [] [] | {} {} {} {} () () () ()
When the user clicks a MORE button, the elements move
Hi,
I would like to catch the select event when a user changes the select
item in any in a form. Something like:
$("select").select(function() {
//do some stuff here...
)};
Is this feasible?
is there any information when Ritesh Agrawal star rating plugin will
be fixed for 1.2.1 ?>
On Sep 13, 12:32 am, "Derek Gathright" <[EMAIL PROTECTED]> wrote:
> Karl, thanks for the help.
>
> I've added those corrections along with a few others and I think it's 99%
> there. The only issue left is
No but you could use Canvas or you could use the gradient plugin.
http://jquery.com/plugins/project/gradient
I've been thinking about updating the gradient plugin to use canvas but just
don't have the time right now.
--
Brandon Aaron
On 9/20/07, Pops <[EMAIL PROTECTED]> wrote:
>
>
> I'm wonderin
I'm wondering if there a CSS gradient filter for FF/Mozilla like there
is for IE?
Here is an old Microsoft example for IE that I just changed using
jQuery.
http://beta.winserver.com/public/test/demo-gradient.wct
--
HLS
Frantisek Malina schrieb:
Hi all,
I've got a problem with the accordion plugin height callcullation. It
is a very cool plugin, but there seems to be bug in here.
Plugin at http://bassistance.de/jquery-plugins/jquery-plugin-accordion/
It basically uses for stretching - height of the first eleme
Danjojo schrieb:
Can anyone provide me a link of how to open an xml file using JQuery?
Try this:
$.ajax({
url: "file.xml",
dataType: "xml",
success: function(xmlDocument) {
$(xmlDocument).find(...).dosomeThing(...);
}
});
http://docs.jquery.com/Ajax/jQuery.ajax#options
--
Thank you so much Bruce. This is awesome and exactly what I needed:)
-Mandy.
On 9/20/07, Andy Matthews <[EMAIL PROTECTED]> wrote:
>
>
> Ooooh...
>
> That's TONS better than the crappy version I just wrote.
>
>
> andy
>
> -Original Message-
> From: jquery-en@googlegroups.com [mailto:[EMAI
So I just realized something interesting. This whole thing is done
within a .mousemove(). The mouse move function will stop any existing
animation and (re)start a new one. However, When the mouse is moving
the animation stops even though the mousemove function has yet to be
evoked. The mousemove f
Thanks for the great work Christian! I did find that the 2.0.1 packed version
does not work for me. It complains about a missing semi-colon. I ran the
code through online lint(http://www.javascriptlint.com/online_lint.php) and
it points at line 235. The unpacked and minified version worked since
Benjamin,
thanks for you response.
Okay I have a login form with a input field named (user) set to focus($
("#user").focus();).
When the checks the remember me checkbox, a cookie is created, so the
next time the user logs in his/her username is displayed in this form,
and the inputs (user) and (
Hi there,
I am trying to create a live search by filtering through XML.
The XML structure is as follows:
1
Joe Bloggs
7B
7
2
John Doe
7B
7
Hi Brook,
Here's a layout of what we've developed at an enterprise level. Below is the
relivant directory structure...
...
/jquery
jquery.properties
dimensions.js
jquery-1.1.4.js
jquery-1.2.1.js
hoverintent.js
/src
/component
component.js
component.css
component.html
/i
Hi. I have been looking for a bit and cannot find the answer to my
question so I thought I would post here. If there is some
documentation that I missed please just point me there. I am using the
latest jQuery version 1.4.1.
Generally speaking I want to alter a currently running animation's
prope
$("#mySelect option")
$("#mySelect option:selected")
$("#mySelect option:selected").attr("id);
$(#mySelect")[0] //the actual dom node.
All untested, but should be ok.
Firebug in Firefox has all kinds of neat tools for this.
In the script tab, put a watch for $("#mySelect") and you can inspect t
Jeff,
Can you elaborate just a bit? I really have no idea what you are trying to
do. Do you have something we can look at?
On 9/20/07, njsuperfreak <[EMAIL PROTECTED]> wrote:
>
>
> This sets focus on the field which works fine.
> $("#user").focus();
>
> The problem is object $(#user) disappears
Glen, really nice work, thanks for putting the time in.
On 9/20/07, Glen Lipka <[EMAIL PROTECTED]> wrote:
>
> Ben Nadel wrote a cool article on how to transform XML to HTML or PDF
> using Cold Fusion and XSLT.
> http://www.bennadel.com/index.cfm?dax=blog:961.view
>
> I have also been experimenting
Hi matt81,
I think you need the Live Query --
http://brandonaaron.net/docs/livequery/
--Tony
This sets focus on the field which works fine.
$("#user").focus();
The problem is object $(#user) disappears when the remember me box is
checked. Someone suggested I do a try() catch() statement. I am a
little new to that so I was, asking if anyone knows how to do this in
jquery. Thanks!
How do you get a reference to a select field and then do things like set the
selectedIndex, get the options array etc.
I know I can get a reference to the object via a basic selector
$("#mySelect") but then how do I access the options array and related stuff?
How do you access the 'object'
Ben Nadel wrote a cool article on how to transform XML to HTML or PDF using
Cold Fusion and XSLT.
http://www.bennadel.com/index.cfm?dax=blog:961.view
I have also been experimenting with PHP to do similar things.
Code:
http://www.commadot.com/jquery/experiments/api/viewSource.php?file=xmlReader.php
Ooooh...
That's TONS better than the crappy version I just wrote.
andy
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Bruce MacKay
Sent: Thursday, September 20, 2007 10:29 AM
To: jquery-en@googlegroups.com
Subject: [jQuery] Re: Tag Cloud
A
If all you want is for jQuery to randomly change the size and color of
strings inside a div, that's easy enough.
http://www.commadelimited.com/code/tagcloud/
My CSS only changes sizes, but you could easily add more style declarations.
andy
_
From: jquery-en@googlegroups.com [mailto
At 02:28 a.m. 20/09/2007, you wrote:
Is there an implementation of Tag Cloud css or logic using jquery?
This might help you:
http://www.nabble.com/-Plugin--DynaCloud-Plugin-tf4254840s15494.html#a12109312
Loaded fairly quickly for me, especially for the first
visit...looks good!
Rick
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Peter Bengtsson
Sent: Thursday, September 20, 2007 10:15 AM
To: jquery-en@googlegroups.com
Subject: [jQuery] Re: [SIT
> Sounds like you don't to public facing web sites. Having so many
> libraries means there must be several hundred kb download just to get
> going.
I'm not saying to use all of them at the same time. I'm just saying that
we use the parts we need to solve particular problems. In the case of
jQue
How would jQuery know which string was the "most important" and which was
the "least"? What would the div contain? This could be done if jQuery had
enough info to pull from. But if all your code is written in jQuery, then
why not just hard code the tag cloud?
_
From: jquery-en@googlegroup
Oh Really? Sorry, I didn't even know that :)
On 9/20/07, Chris W. Parker <[EMAIL PROTECTED]> wrote:
>
>
> On Thursday, September 20, 2007 8:23 AM Mandy Singh said:
>
> > All my code is written in jquery so rather than writing something to
> > randomly capiltalize and change font of some stuff insi
I am not an expert either but:
2 XML connections open for the same domain.
You can get many connections open by changing the domain.
xml.domainname.com
xml2.domanname.com
You can accomplish this using the domain property of the document object.
document.domain = domainname.com
http://www.devguru.
On 20/09/2007, Michael Stuhr <[EMAIL PROTECTED]> wrote:
>
>
> Peter Bengtsson schrieb:
> > Loading the homepage made my computer feel sluggish. 11 scripts and a
> > total of 74 requests for the homepage!! Not good a good "advert" for
> > jQuery. Together with the post-loaded XML and Flash and stuff
Hi Brook,
If you'd like to wait a couple of days, I'm hoping to release a PHP
download manager, which organises things from the server end. Keep an
eye here for the announcement.
Best Regards,
Paul
On Sep 20, 4:23 pm, "Brook Davies" <[EMAIL PROTECTED]> wrote:
> Hello,
>
> Since we know that in
[EMAIL PROTECTED] karl, that did it! your page
http://www.learningjquery.com/2007/09/animated-scrolling-with-jquery-12
is very informative, too!
jquery is truly awesome. i never look back to writing javascript w/out
a library like this (and when i do i get that sinking feeling---
javascript is c
Karl Swedberg wrote:
On Sep 20, 2007, at 10:06 AM, Scott Sauyet wrote:
Mr Batman wrote:
I would like to insert all of the images from a certain folder in the
root of my site into one div on my home page automatically.
Is this possible with jQuery and if so how do you do it?
jQuery cannot kno
On Thursday, September 20, 2007 8:15 AM Anthony Leboeuf(Worcester Wide
Web) said:
> Well, I just received the Files but I threw up a basic template. I
> will be templating the CMS system over the next few weeks.
>
> http://bbb.dlg360.com/
>
> this will be the look for every single local BBB in
On Thursday, September 20, 2007 8:23 AM Mandy Singh said:
> All my code is written in jquery so rather than writing something to
> randomly capiltalize and change font of some stuff inside a div to
> generate a tag cloud, I thought something like this, if available as
> jquery plugin which takes
I am not an expert:
I was reading yesterday about browsers are only required to keep 2 XML
connections open and place other requests into que others, which will
be call later, not in any order. See if you can location further into
in this area?
wolf,
Change 'body' to 'html':
$( 'html' ).animate( { scrollTop: y }, d, 'bounceout' ); };
--Tony
On 9月20日, 下午9時12分, wolf <[EMAIL PROTECTED]> wrote:
> i am looking for a solution to scroll pages smoothly and found the
> example at
>
> http://dev.jquery.com/~john/ticket/step/test2.html
>
> that
I'm actually looking for the same functionality. The closest jquery
plugin I've found so far is the clickmenu plugin. I've started a
conversation with the developer about extending his plugin to support
this type of menu system. If you could chime-in with your
suggestions, I'd appreciate it.
B
Live Query works within the "jQuery sandbox" for DOM Manipulation. The
function adddate uses regular DOM methods to insert the element. Simply
convert that method to use jQuery instead (bonus of shorter syntax too) and
it will work just fine.
function adddate() {
alert('adding date');
$('#
Hello,
Since we know that including a large number of JS files seperatlty
significantlty increases download time
(http://www.wormly.com/help/case-studies/the-web-2.slow), what does everyone
do? Do you combine and pack your JS files (for example if you have several
of the UI library includes) in
All my code is written in jquery so rather than writing something to
randomly capiltalize and change font of some stuff inside a div to generate
a tag cloud, I thought something like this, if available as jquery plugin
which takes a div as argument and randomly does the css stuff, would be
great.
On Sep 20, 2007, at 10:06 AM, Scott Sauyet wrote:
Mr Batman wrote:
I would like to insert all of the images from a certain folder in the
root of my site into one div on my home page automatically.
Is this possible with jQuery and if so how do you do it?
jQuery cannot know what files are on yo
Well, I just received the Files but I threw up a basic template. I will
be templating the CMS system over the next few weeks.
http://bbb.dlg360.com/
this will be the look for every single local BBB in the US/CA so thats
hundreds new of sites running jquery
_Tony
Andy Matthews wrote:
Bette
So it works in Firefox but the "bug happens on all browsers"??
Are you sure the element with that ID is part of the DOM tree and not
something that is pasted in as "text" by ajax. $('#foo') does work in
jQuery 1.2
On 9/20/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
> I have a webapp that u
On 9/21/07, jon randahl <[EMAIL PROTECTED]> wrote:
>
> Out of simple curiosity, is there any way to set a "degree/level" of
> opacity with superfish?
> I'm only asking as you can set the default to hide/show, is there any
> other options?
>
> Thanks in advance!
>
> J
Hi Jon,
I'm not positive I u
Hi, all! I'm experiencing a strange problem with Live Query. When I
add elements to the DOM, they aren't picked up until I click a pre-
existing element with a jQuery behavior. The key parts of my sample
code are:
@import url(/intranet/css/jquery-
Out of simple curiosity, is there any way to set a "degree/level" of
opacity with superfish?
I'm only asking as you can set the default to hide/show, is there any
other options?
Thanks in advance!
J
> http://www.lexcat.ro/nicejforms/nicejforms.html
> http://envero.org/jlook/
Thanks for the suggestions. In order to compete with the YUI version
the jquery solution would have to offer a lot more than just visual
changes. Check out the YUI example: http://blog.davglass.com/files/yui/button1/
I'm
I have a webapp that uses JQuery (version 1.2) for doing javascript
DOM manipulation. The webapp works great most of the time. However, we
have an easily reproducible bug in which JQuery cannot find a
particular DOM object under certain circumstances, even though the DOM
object does seem to be the
I would like to put the counter in an input field of type text instead
of in an em or Div tag as in the docs, could someone show me how that
can be achieved? Just passing the ID of the Input tag did not work.
link to the plugin
http://www.tomdeater.com/jquery/character_counter/
Thanks
Hi wolf,
I ran into the same problem, but on John Resig's recommendation I add
"html" to the selector and it worked:
$( 'html, body' ).animate( { scrollTop: y }, d, 'bounceout' ); };
See my blog entry for more information:
http://www.learningjquery.com/2007/09/animated-scrolling-with-jquery
Peter Bengtsson schrieb:
Loading the homepage made my computer feel sluggish. 11 scripts and a
total of 74 requests for the homepage!! Not good a good "advert" for
jQuery. Together with the post-loaded XML and Flash and stuff I think
the site is better served as a BitTorrent :)
but before y
$("div").load("file.xml");
You can treat it like html then.
Glen
On 9/20/07, Danjojo <[EMAIL PROTECTED]> wrote:
>
>
> Can anyone provide me a link of how to open a .xml file using JQuery?
>
> Do we have anything in the documentation or sample libraries yet?
>
> Thank you.
>
>
Since each of those area tags has it's own unique set of data, you'd
probably need to assign some unique identifier to it. Take just one,
by adding an id to it, you could do this:
$('area').each(function(){
// a shortcut variable
var $thisArea = $(this);
$thisArea.hover
Loading the homepage made my computer feel sluggish. 11 scripts and a
total of 74 requests for the homepage!! Not good a good "advert" for
jQuery. Together with the post-loaded XML and Flash and stuff I think
the site is better served as a BitTorrent :)
Michael Price wrote:
Hi all,
One of
Mr Batman wrote:
I would like to insert all of the images from a certain folder in the
root of my site into one div on my home page automatically.
Is this possible with jQuery and if so how do you do it?
jQuery cannot know what files are on your server. If you have some
server-side solution
$("[EMAIL PROTECTED]'checkbox'[EMAIL PROTECTED]'my_']") will give all
checkboxes object
notebook2 wrote:
>
>
>
> Hello,
>
> is it possible in prototype to get all checkboxes on a page with a fixed
> id namepart like this:
>
> ID="my_checkbox"
>
> and i want to get all checkboxes begi
I would like to insert all of the images from a certain folder in the
root of my site into one div on my home page automatically.
Is this possible with jQuery and if so how do you do it?
Can anyone provide me a link of how to open a .xml file using JQuery?
Do we have anything in the documentation or sample libraries yet?
Thank you.
Hi, list
I found a jQuery 1.2.1 bug which fails in IE(6|7).
jQuery.domManip calls evalScript and finally executes
window.execScript if the conditions match,
but window.execScript in IE fails when scripts include HTML comment
tag.
Traditional way of writing script tag is as below for browsers wh
HI.. nice promo.
Not really a troll but just an fyi.. the menu along the top. The
background color only changes to white if you actually hover over the
link in the menu selection. This really should change to white if any
part of the div is selected. Just my 2 cents... cant help it.. sorry
lol...
i am looking for a solution to scroll pages smoothly and found the
example at
http://dev.jquery.com/~john/ticket/step/test2.html
that does exactly what i want. i ported the code, but to my dismay, it
stopped working in both firefox and ie. i finally found the culprit
is, surprise!, the XHTML d
Hi there.
On this site http://lexus-test.lateral.net/blogfeeds/ , when one of
the main navigational links is hit (About the debate, for example), I
pull in some static HTML from a separate HTML file through through the
jQuery ajax load() method, and display it on top of the main content
in an abs
I mean what I posted above is easy to do since your using JQuery and
all...
Peace.
On Sep 19, 11:08 am, Karl Swedberg <[EMAIL PROTECTED]> wrote:
> Brian,
> Excellent! As a resident of Grand Rapids, Michigan, I'm very happy to
> see this GR-based superstore using jQuery. :) Nice work!
>
> Stra
Hi, list
I found a jQuery 1.2.1 bug which fails in IE(6|7).
jQuery.domManip calls evalScript and finally executes
window.execScript if the conditions match,
but window.execScript in IE fails when scripts include HTML comment
tag.
Traditional way of writing script tag is as below for browsers wh
> Is there an implementation of Tag Cloud css or logic using jquery?
Why would you need jQuery for a tag cloud?
-Nicolas
--
Nicolas "Brush" HOIZEY
Clever Age : http://www.clever-age.com/
Gastero Prod : http://www.gasteroprod.com/
Photos : http://www.flickr.com/gp/[EMAIL PROTECTED]/M1c002
I think its a problem of how you're including the library. Try writing
your script line like this: .
IE can't handle the self closing script tag. I know its lame, but
thats IE for ya.
On Sep 20, 12:28 am, "John Resig" <[EMAIL PROTECTED]> wrote:
> Do you have a full page online that we can look
1 - 100 of 121 matches
Mail list logo