I figured something out.. in de js file of the validator is the next
section:
formatAndAdd: function( element, rule ) {
var message = this.defaultMessage( element, rule.method
),
theregex = /\$?\{(\d+)\}/g;
if ( typeo
Hi,
I'm using Jquery.validation to remotly test if an e-mail is already
in use, it works fine, but... if i do a remote check, it returns the
correct response e.g. "some...@abc.com already in use" but when i
click on the field, and then somewere else the message changes to
"filename.php already i
They seem about the same to me as well, FF3.5.6 on Win7
-Original Message-
From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On
Behalf Of Scott Sauyet
Sent: Wednesday, January 06, 2010 1:29 PM
To: jQuery (English)
Subject: [jQuery] Re: Why mootools animations is more sm
Have you tested the 1.4 nightly with your code? Any issues with it?
-Original Message-
From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf
Of Bruce
Sent: Monday, January 04, 2010 1:28 PM
To: jQuery (English)
Subject: [jQuery] Re: Does anybody know when jquery 1
need to send keep in mind all the data the user has insert.
I know is a strange user requirement to save every page as PDF...
I wonder if is techincally possible.
Thanks a lot.
Massimo
On 9 Nov, 18:15, "Jeffrey Kretz" wrote:
> The jsPDF project, while interesting, has a long way
The jsPDF project, while interesting, has a long way to go. Their demo page
at
http://jspdf.googlecode.com/svn/trunk/examples/basic.htm
Worked fine in Safari for iPhone and Safari for Windows, but broke in Chrome
and Firefox 3. And no IE support at this time.
Seems a bit tricky to use a produc
I concur. Recent stats have put IE 5.5 usage at less than 0.1 % of web traffic.
That is a tremendous minority to worry about.
From: Michel Belleville [mailto:michel.bellevi...@gmail.com]
Sent: Thursday, November 05, 2009 11:27 PM
To: jquery-en@googlegroups.com
Subject: Re: [jQuery] suppor
A common solution is to use the "minified" version and then gzip that file to
the client.
There are many gzip solutions, depending on the server you have. JSP, PHP,
ASP, etc.
The idea is that it compresses the minified file (sort of light a lightweight
ZIP or RAR) and it is downloaded i
I agree, although I would add one thing to that.
If you're going to PREVENT the form from submitting, bind to the form's
submit event.
If you're trying to SUBMIT the form, and which button you clicked is
important (for example, firing a .NET server-side event), then bind to the
click event
I suppose the solution depends largely on what you're trying to accomplish,
as well as the event handlers.
If you have an object on the page that performs search-type functions, and
you need to bind events to it, you could use a class-based solution:
... Content
$(".searchgrid").do_somethi
Put together a hashtable of colors based on the customer name.
Something like this (untested):
var hash = {};
$('#tableid tr').each(function(i){
var tr = $(this);
var customer = $.trim(tr.children('td:eq(1)').html());
var color = hash[customer];
if (!color)
{
has
wrote:
> Also I have to invoke this script on click of the link on the
> page...how can I do it...
>
> On Oct 9, 3:35 pm, "Jeffrey Kretz" wrote:
>
>
>
> > This would be one way of doing that with jQuery:
>
> > $.ajax({
>
This would be one way of doing that with jQuery:
$.ajax({
url:"https://ondemand.abc.com/xyz/sessionServlet";,
success:function(results){$("#time").val(results);}
});
-Original Message-
From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On
Behalf Of Nits
Sent: Frid
It isn't necessary to define the functions inside the document.ready.
Just code which is being executed.
Example:
function Do_Something()
{
///
}
function Do_Something_Else()
{
///
}
$(document).ready(function(){
Do_Something();
});
JK
-Original Message-
From: jquery-en@go
Are you trying to have the browser render a PDF document WITHOUT the client
having the PDF reader installed?
It seems to me you would need to rely on some sort of server-side technology
that would convert the PDF document into straight HTML or perhaps a SWF.
JK
-Original Message-
From:
If both events are bound to the same object, you can use the .data method:
var obj = $('#element')
.data('info',val)
.bind('click',do_something)
.bind('blur',something_else);
function do_something(e)
{
var el = $(this);
var info = el.data('info');
...
el.data('results',val2)
My guess is its related to a problem I ran into with the Sizzle child
selectors in 1.3.x
I opened a ticket about a month ago
http://dev.jquery.com/ticket/4917
But it hasn't been reviewed yet.
JK
-Original Message-
From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] O
Firstly, your original UA is probably IE7/Vista. This is a proper msie6
browser detection script:
$.browser.msie6 = $.browser.msie && /MSIE
6\.0/i.test(window.navigator.userAgent) && !/MSIE
7\.0/i.test(window.navigator.userAgent);
Secondly, the whole idea behind feature detection is to remove t
Correct.
Try visiting your asmx page in a browser.
http: //localhost/BoATransformation/Survey.asmx?op=GetSurvey
You will be shown the exact format needed to make your request.
JK
From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On
Behalf Of Joseph Le Brech
Untested, but you may need to use the non-greedy form of .* to make this
work:
/.*?(\d+).*/
JK
-Original Message-
From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On
Behalf Of Ricardo
Sent: Monday, May 11, 2009 1:09 PM
To: jQuery (English)
Subject: [jQuery] Re: rege
I just changed the plugin to use XMLDOM more correctly. It's version
1.1 beta now.
http://blog.darkthread.net/blogs/darkthreadtw/archive/2009/04/29/jquery-xmlext-plugin.aspx
Found some issue, the plugin is under modification now and will
republish latter, sorry.
On 4月29日, 下午5時50分, Jeffrey wrote:
> I found that appending XML string as XML node will fail in IE, so I
> wrote a small plugin to solve the problem, here is my
> post:http://blog.darkthread.
I found that appending XML string as XML node will fail in IE, so I
wrote a small plugin to solve the problem, here is my post:
http://blog.darkthread.net/blogs/darkthreadtw/archive/2009/04/29/jquery-xmlext-plugin.aspx.
Feel free to give me some feedback.
You can also create a closure:
$(document).ready(function(){
$('#menulinks a').hover(function(){
var fn = function(el){
return function(){
$(el).stop().animate({
top : '40px',
paddingTop : '40px'
});
el = null;
I just put a live demo on
http://www.darkthread.net/miniajaxlab/slidefieldset/sample.htm.
On 4月21日, 上午9時07分, Rick Faircloth wrote:
> Got a demo, Jeffrey?
>
> On Mon, Apr 20, 2009 at 8:20 PM, Jeffrey wrote:
>
> > Hi, I wrote a simple jQuery plugin to make fieldset collapsibl
Hi, I wrote a simple jQuery plugin to make fieldset collapsible, take
a look and give me some feedback if you like. Thanks.
http://blog.darkthread.net/blogs/darkthreadtw/archive/2009/04/21/slidefieldset-plugin-for-jquery.aspx
Jeffrey
+1.
I found Multiple IE to be inaccurate for certain types of CSS and
Javascript. I've used VPC for my compatibility testing for some time now
and swear by it.
JK
-Original Message-
From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On
Behalf Of Dhana
Sent: Monday, Ma
, .sf-menu a:link, .sf-menu a:focus, .sf-menu a:active, .sf-
menu a:hover, .sf-menu a:visited { /* visited pseudo selector so IE6
applies text colour*/
color:white;
margin-left:0.0em;
padding-left:0.4em;
}
Thank you for all your time and effort creating and supporting a great
plug-
Hello,
I'm new to jquery and I've been wondering if there are any performance
implications to "packing" all of my jquery code into a single instance
of "$(document).ready(function()..." or using separate ones for each
goal I want to achieve?
All the best,
Jeffrey
shots of what I'm seeing
along with my HTML markup and CSS.
You can find that page here:
www.make-shades.com/superfish.php
If anyone can point me in the right direction it would be greatly
appreciated.
All the best,
Jeffrey
If I could second this from a usability perspective.
I've used a flash-based interface that had a rotating knob. Moving that
with a mouse was counter-intuitive.
Dragging a straight slider (horizontal or vertical) just felt a lot better.
JK
-Original Message-
From: jquery-en@googlegrou
One question, if you're referring to your elements by id, can't you just do:
$('#elmId');
Directly? Rather than by a parent/child relationship?
If the problem is that you have multiple elements on the same page with the
same id (which is NOT recommended HTML), then I suggest using a class base
** I'm sorry if I'm double posting but my previous attempt seems to
have disappeared. **
Does the current Cluetip support the jquery 1.3 simplified Ajax $.get
technique?
$.get( url, params, callback )
Example: $.get("test.cgi", { name: "John", time: "2pm" } );
If so, I'm having a heck of a time
I'm trying to craft a simple Ajax-based Cluetip using a $.get that
passes along a singe key/value pair and brings back some simple HTML.
I keep getting javascript syntax errors.
Here's what I want to accomplish:
prodtips.php?p=mbt35
Using the jQuery $.get sample found here:
http://docs.jquery.
I solved this for my own project in this way:
1. Server-side code renders the first page of the grid, also passing a
value of total results.
2. If the total results are few enough (season to taste), fire an ajax call
that immediately loads the entire result set into memory.
3. As the user re-s
out his IDOverride control)
>
> Supposedly there's stuff in the pipeline to specifically prevent .NET
> from changing the IDs without any extra controls needed, coming in
> "4.0", i cannot remember for the life of me where i read/saw that
> though.
>
> On
Thanks, MorningZ.
IDOverride seems a good option. I can't find too many discussions
about Wilco's IDOverride from Internet. Will the modifcation of
ClientId impact the postback event raising? I find of some warning
about that. (LoadPostData, RaiseChangedEvent, IPostBackDataHandler
issues)
On
You could put all 4 boxes inside a containing div, and apply the hover event
to that parent div.
When you move from one child div to another, it will not fire the mouseleave
event.
JK
-Original Message-
From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On
Behalf Of Ja
AFAIK, no SEO bots will ever execute javascript or read hidden
(display:none, visibility:hidden, etc.) HTML for SEO purposes.
This is as a result of some developers "front loading" hidden content that
was not really part of the website to fool the search engine to giving it
higher rankings. Cons
Well, if you are able to post a test case online, I'd be happy to step
through the code and see if I can see what's up.
If you do want to do this, an unminified copy of jquery would be preferable.
JK
-Original Message-
From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com]
There shouldn't be an issue, so long as "existingCase.records.Spin_Off__c"
has a correct value.
Do your option elements have explicitly defined values? Like this:
Yes
No
If not, try changing your markup and see if that helps.
JK
-Original Message-
From: jquery-en@googlegroups.com [m
Mike's suggestion involves creating a javascript "closure".
There are a number of good articles on closues.
http://www.google.com/search?hl=en&q=javascript+closures&rlz=1W1GGLL_en
But essentially, when you create a function that has a reference to a value
outside of its scope, that function is
It is unfortunately the default behavior for IE. There are different ways
you can handle this, depending on what you're trying to accomplish.
You can do a lot of stuff with regex, such as stripping out the domain,
making the path relative to the current page, etc.
What is it that you want to do
dragging the bottom right corner of
browser) the content in tables resize very nicely in browser window.
could not get the same without tables.
On Dec 6, 5:29 pm, "Jeffrey Kretz" <[EMAIL PROTECTED]> wrote:
> You could post a test case page and I could take a look at it, but if
tabs and YUI data table column sizes
go all weird with display: none
any solutions?
On Dec 6, 4:03 pm, "Jeffrey Kretz" <[EMAIL PROTECTED]> wrote:
> Is there any reason why you aren't just hiding the tab with a
display:none?
> JK
>
> -Original Message-
&
Is there any reason why you aren't just hiding the tab with a display:none?
JK
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Ashish
Sent: Saturday, December 06, 2008 3:47 PM
To: jQuery (English)
Subject: [jQuery] IE 7 Issue with Tab with left:
I'm going to toss this out there, though you may not want the effort.
You could sort of "roll your own" animation that uses the attribute, rather
than the CSS.
It would involve a setTimeout, and use the $(el).attr('cols',val);
Again, that's a lot of plumbing to tackle, but any attribute that ca
10:20 PM
To: jquery-en@googlegroups.com
Subject: [jQuery] Re: Is there a createElement equivalent in jQuery?
Thanks, I didn't know that you could bind an event handler like that. :)
BTW, does the "var div" now reference the new element, or does it represent
the event handler?
J
You can do it this way:
var div = $('mailto:[EMAIL PROTECTED] On
Behalf Of Yansky
Sent: Wednesday, December 03, 2008 9:21 PM
To: jquery-en@googlegroups.com
Subject: [jQuery] Is there a createElement equivalent in jQuery?
Hi, I was just wondering if there was a createElement equivalent in jQuer
I would recommend your elements having two classes. One which stays the
same, and the second one which changes.
e.g.
Then you could grab it with
$('div.jcalendar');
JK
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of light-blue
Sent: Wed
That is half correct.
Obj.method1().method2().method3()
method1 return the modified original object, not a brand-new object.
You could do this:
var obj = $('#elementid');
obj.method1();
obj.method2();
obj.method3();
And it would be the same (with the same performance) of:
$('#elementid').met
Before I answer, I've gotta ask (I've been wondering for MONTHS), have you
read the Starrigger series?
Now that that's out of the way, I can think of a couple of approaches.
#1. Parse the links with regex
$.get(link,{},function(html){
var r_links = /]*?href\s*=\s*['"]([^"'>]+)[^>]*>/gi;
v
A CSS-compliant browser will render the title attribute -- it's probably not
the best way to store data.
You can use the jQuery.data method instead:
http://docs.jquery.com/Core/data#name
JK
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of René
's sticky-ness?
Thanks -
Ted
Jeffrey Kretz wrote:
>
>
> I made a few changes and reposted it here:
>
> http://test1.scorpiondesign.com/LocalTest7.htm
>
> Changes:
>
> menu1 through menu5 were moved underneath their respective LIs. When the
> menus were NOT
Ariel, I'm sure this isn't said enough, but I wanted to thank you for the
work you've done on the system.
I've been working overtime (like 90 hour a week) for the last 2 months on a
major project with a killer deadline, and I would be completely screwed
without the work you (and the rest of the t
ler should cancel the context menu on
Opera and other browsers. And apparently on Macs the event for a Ctrl
+click carries the 'right-click' identifier (e.button = 2).
cheers,
- ricardo
On Nov 30, 4:07 pm, "Jeffrey Kretz" <[EMAIL PROTECTED]> wrote:
> If I might make a su
One way you could do this is have give the links in question a specific ID,
class or attribute.
For example:
link 1
link 2
link 3
$('#myLinks a').click(doSomething);
function doSomething(e){
switch ($(this).attr('id'))
{
case "link1":
// Some code.
brea
Not sure what's happening on the javascript end, but CSS-wise, the FF list
has an attribute of overflow:auto and the same list has an attribute of
overflow:hidden.
JK
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Code Daemon
Sent: Sunday, Nove
If I might make a suggestion.
Right-click context menus are inherently not cross-platform compatible, as
Opera will not cancel the default right click popup.
Any any Mac users without a right mouse button are screwed.
I personally suggest using CTRL-Click. This works on a Mac testing for the
e
for the sibling right before any
I am building menus and submenus. Any ... that
appears below a ... is a submenu. I know that I could add a
"name" or class to either the head or subhead. I wouod rather have
jQuery find these so that I don't have any markup in the HTML
necessary t
egroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of flycast
Sent: Saturday, November 29, 2008 8:29 PM
To: jQuery (English)
Subject: [jQuery] Re: Problem with prev() in IE
Yes...
http://www.trinityacademy.org/testNavigation/
On Nov 29, 6:22 pm, "Jeffrey Kretz" <[EMAIL PROTECTED]>
D] On
Behalf Of Uwe C. Schroeder
Sent: Saturday, November 29, 2008 8:04 PM
To: jquery-en@googlegroups.com
Cc: Jeffrey Kretz
Subject: [jQuery] Re: .ajax and ie7?
On Saturday 29 November 2008, Jeffrey Kretz wrote:
> This may be overkill for your needs, but it is free:
>
> http://www.microso
IE js debugger :)
Thanks again
Dave
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Jeffrey Kretz
Sent: 30 November 2008 03:40
To: jquery-en@googlegroups.com
Subject: [jQuery] Re: .ajax and ie7?
Well, it was a bit of a pain to step through, as i
Well, it was a bit of a pain to step through, as it was minimized jquery --
the full uncompressed version is much better for debugging.
But as I stepped through, the success method did actually fire.
The problem was that $(xml).find('file') did not return any results.
I've never used jQuery to
Can you post a sample url? The code below looks fine, don't see why it
would fail.
It would be easy to step through it with an IE script debugger to see what's
up.
JK
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of David Andrews
Sent: Saturday
I've used something very similar to that in IE6 without any problems.
Could you post a demo page?
JK
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of flycast
Sent: Saturday, November 29, 2008 3:57 PM
To: jQuery (English)
Subject: [jQuery] Probl
Not exactly.
The $(document).ready function fires when the DOM has been fully built, so
not all the images will be loaded at that time.
You could bind to the images load method as well.
function fixDimensions()
{
var img = $(this);
img.attr('width',img.width());
img.attr('height',img.h
Same here.
JK
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Michael Geary
Sent: Friday, November 28, 2008 2:20 PM
To: jquery-en@googlegroups.com
Subject: [jQuery] Re: quote standards
I've posted messages here quite a few times recommending si
> > was not responding as it should so I posted a thread also in the
> > jQuery development google group.
>
> >http://groups.google.com/group/jquery-dev/browse_thread/thread/945f3c...
>
> > Nobody has replied so far...
>
> > I wait a couple of days to see i
the suggestion. It didn't work though. I'm at a
loss. Is this a jQuery bug, or am I doing something wrong?
On Nov 25, 3:53 pm, "Jeffrey Kretz" <[EMAIL PROTECTED]> wrote:
> You could try this:
>
> jQuery('div.clause').each(function(){
>
You could try this:
jQuery('div.clause').each(function(){
var width = 0;
var words = jQuery(this).children('div.word');
for (var i=0;imailto:[EMAIL PROTECTED] On
Behalf Of thesubtledoctor
Sent: Tuesday, November 25, 2008 10:44 AM
To: jQuery (English)
Subject: [jQuery] scope
?
JK
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Bhavin
Sent: Tuesday, November 25, 2008 11:53 AM
To: jQuery (English)
Subject: [jQuery] Re: dynamic tree / treeview
Thanks Jeffrey. I solved issue# 1 almost similar way you suggested.
But I a
link to a simplified version of the code. The mouseenter/mouseleave
events helped, but I'm seeing some strangeness on the first menu item, and
then some flickering on the others.
http://dl.getdropbox.com/u/21984/menu_test.html
Jeffrey Kretz wrote:
>
>
> If you have a sample url of
If you have a sample url of your code, that would be helpful.
But at a guess, the flyout div is probably not a child of the main menu
element, so the mouseenter and mouseleave won't work properly. If this is
the case, it will require a minor change to the hover plumbing.
The z-index with flash
Opacity would fade in the image as a whole, rather than adjusting its
brightness/contrast (which is more what gamma would adjust).
I don't know how fancy you want to get, but you could absolutely position a
div in front of the image, set for white (or black) and adjust its opacity
from 0 to some
m and 'often' it would take less time
doing it from scratch...
often... ;-)
On Nov 24, 12:09 am, Anyulled <[EMAIL PROTECTED]> wrote:
> why don´t you use Jquery Cycle plugin?
>
> On Nov 22, 10:17 pm, "Jeffrey Kretz" <[EMAIL PROTECTED]> wrote:
>
> > I'
The best way would be to use the $.ajax call directly (both the post and the
get function call $.ajax internally).
$.ajax({
type:'GET',
url:'somepath.php',
dataType:'json',
success:do_something,
error:do_something_else
});
function do_something(results) {
///
}
function do_some
nts could help here: http://code.google.com/p/nwevents/
It's an event manager and it can fire/propagate 'fake' events.
- ricardo
On Nov 22, 7:32 pm, "Jeffrey Kretz" <[EMAIL PROTECTED]> wrote:
> I pretty sure it won't, because click() will fire trigger(), which will
use
om: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of ^AndreA^
Sent: Saturday, November 22, 2008 4:26 PM
To: jQuery (English)
Subject: [jQuery] Re: animate problem with IE7
Hi Jeffrey, thanks.
I deleted the "float: left;", i didn't know was useless with
position:absol
I watched the animation with the IE developer toolbar, and noticed a couple
of oddities.
Firstly, the CSS for the divs are set to both position:absolute and
float:left. This is not the source of the problem (I overwrite to
float:none and tried it), but float:left is unnecessary if with absolute
I'm not 100% I understood your question, but I'll give it a shot.
I have a dynamically rendered TreeView that is showing a page hierarchy,
parent and child.
There is an option to add/remove pages, as well as drag them around.
Because I need the id of the page and its parent, I render it in the
I pretty sure it won't, because click() will fire trigger(), which will use
data() to lookup the bound event of the selected element, and not find
anything.
Haven't tested this though.
JK
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of ricardob
I've used a pattern like this:
var table = $('table.class')
.bind('click',selectCell);
function selectCell(e)
{
var cell = e.target;
do_something();
}
var cell = table.find('td.eq(8)');
selectCell.apply(table[0],[{target:cell[0]}]);
JK
-Original Message-
From: jquery-en@googl
Off the top of my head (untested, sorry)
var things = $('things');
var index = 0;
things.eq(0).doStuff();
var fn = function() {
index++;
things.eq(index).doStuff();
setTimeout(fn,1000);
};
setTimeout(fn,1000);
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PR
Personally I find debugging jQuery a snap -- even on my current project
which is in excess of 25,000 lines of js code.
I will say that I stay away from the ASP.NET ajax system completely, all of
my hooks between jQuery and .NET are my own and I have had no problems.
The original AJAX.NET library
I wish I had some specific developer's blogs/resources to give you, but I
can't think of any off the top of my head.
However, for the last couple of years, all my software development has been
C#/SQL backend with jQuery frontend, and it's been a perfect marriage as far
as I'm concerned.
If you h
I might be misunderstanding your question, but javascript plug-ins seldom
describe the associated server-side code, as it really depends on your
platform.
PHP, ColdFusion, PERL/CGI, Java, .NET, all will have very different
implementations of server-side solutions, along with their Database
backen
The problem you have is due to the terrible IE implementation of opacity.
IE actually uses DirectX 2D filters to render opacity, along with a whole
bevy of completely proprietary filters and transitions. See this page for
reference:
http://msdn.microsoft.com/en-us/library/ms532847(VS.85).aspx
Here are a couple of articles on it:
http://brennan.offwhite.net/blog/2008/02/01/intellisense-for-jquery-in-visua
l-studio-2008/
http://blogs.ipona.com/james/archive/2008/02/15/JQuery-IntelliSense-in-Visua
l-Studio-2008.aspx
http://weblogs.asp.net/scottgu/archive/2007/06/21/vs-2008-javascript-int
Try
$('[class^=rate]');
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of debussy007
Sent: Tuesday, November 11, 2008 3:15 PM
To: jquery-en@googlegroups.com
Subject: [jQuery] get the class that starts with ...
Hi,
How is it possible to get the
I think it’s a great idea --it's a zillion times friendlier than an alert
validator in ensuring properly formatted data.
JK
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Liam
Potter
Sent: Tuesday, November 11, 2008 7:16 AM
To: jquery-en@goog
Look terrific in FF, but it's seriously broken in IE7.
I get a script error on line 8007 whenever I click on the page, which seems
to prevent anything from working.
// hide all levels
hide: function() {
self = this;< Right here.
setTimeout(function() {
I just answered my own question. Are you trying to parse JSON provided from
another source? I.e. not one of your own server pages?
JK
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Mike Alsup
Sent: Monday, November 10, 2008 9:05 AM
To: jQuery
Is there a problem with using the eval function?
I'm curious why you would need an alternative that would add overhead.
JK
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Mike Alsup
Sent: Monday, November 10, 2008 9:05 AM
To: jQuery (English)
S
Well I never been to England
But I kinda like the Beatles
Well I headed for Las Vegas
Only made it out to Needles
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of weepy
Sent: Saturday, November 08, 2008 8:45 AM
To: jQuery (English)
Subject: [jQuer
It's actually workable to use Flash as a basis for the sound. It's easier
with ActionScript 3.0, but it can still be done in earlier versions. You
have to bind a flash method to an external interface (look up
ExternalInterface in the docs).
Then you can find the by ID, and call the method on i
(English)
Subject: [jQuery] Re: Scrolling inside a div with mousemove
Ah ok,
So does that mean I need to calctulate how far up or down it can
scroll?
On Nov 7, 7:34 am, "Jeffrey Kretz" <[EMAIL PROTECTED]> wrote:
> Ah,
>
> This part of the code:
>
> // Use
ssage-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Dan
Sent: Thursday, November 06, 2008 8:27 PM
To: jQuery (English)
Subject: [jQuery] Re: Scrolling inside a div with mousemove
Hi Jeffrey,
Thank you for your reply, however I can't seem to get your code to
Mostly like your last question just got overlooked, as it came in at 4:30am.
;-)
There are two types of progress bar indicators you can use.
The first is a "fake" one, with an animated picture that doesn't really mean
anything. However, when you post the page most browsers will pause gif
anima
y further, just flagging it as a potential issue.
On Nov 4, 10:25 am, "Jeffrey Kretz" <[EMAIL PROTECTED]> wrote:
> This is a bit confusing. Is IE7 running that block of code, even though
its
> earmarked for Opera?
>
> Like is the browser detection is failing?
>
> Or i
1 - 100 of 297 matches
Mail list logo