Thanks Mike, did not see that :-)
okay, the plugin works, but this is the error that I get from Firebug:
exception occured when checking element password1, check the
'password' methodjquery.validate.p... (line 14)
this.optional is not a function
(no name)("q", input#password1.{validate_reg_form:
On Sep 25, 2007, at 2:47 PM, Danjojo wrote:
I would just like to say that the following article on upgrading to
1.2 and rewriting for the removed Dom traversal methods and Xpath
electors was very well written.
http://www.learningjquery.com/2007/09/upgrading-to-jquery-12#more-71
I understand
is that happening in Internet Explorer only? If so, the bgiframe
plugin can help.
http://blog.brandonaaron.net/my-jquery-plugins/background-iframe/
--Karl
_
Karl Swedberg
www.englishrules.com
www.learningjquery.com
On Sep 25, 2007, at 2:20 PM, jsandppr wrote:
I'm using t
I Search the web and found code like down:
> 2. Can one validate date formats form other countries like Germany?
This is a YAV config setting, by example Spain date format is
dd-MM-, so in the second map param
of the plugin I can set the YAV settings
Hi Rey
Thanks for your response - after much trial and error I have worked
out the following:
Turn off the default handler:
$.AjaxCFCHelper.setUseDefaultErrorHandler(false);
In the $.AjaxCFC() use error:
$.AjaxCFC({
url: "/packages/ajax/primaryInvitee.cfc",
Duncan,
I'll take a look at it. While jQuery is included in AjaxCFC, most people
on this list don't code in CF so you may not get a quick reply.
Rob Gonda and I will be setting up a support area http://ajaxcfc.com.
Rey Bango...
Duncan wrote:
Can anyone help me out with overriding the defau
That function is also shorthand for this in jQuery:
$(document).ready(function() {
// do something when the DOM is ready
});
Some people like the shorthand. I prefer the longer form because it's
more clear about what it is doing. Ultimate, it's a matter of
personal taste.
--Karl
__
Can anyone help me out with overriding the default error handler in ajaxcfc?
On 9/24/07, Duncan <[EMAIL PROTECTED]> wrote:
> I am using the new ajaxcfc version in jquery and I want to know how to
> override the default and write my own error handler.
>
> I am trying to catch a timeout.
>
> can an
>From what you have written it looks like you are just taking a stab in
the dark - do you use ajaxCFC?
On 9/25/07, Alexander Bilbie <[EMAIL PROTECTED]> wrote:
> It's just 'failure' then function etc..
>
> So from your script:
>
>
> $.AjaxCFC({
> url: "/packages/ajax/primaryInvi
There are a lot of things that seem very strange about what you're doing.
Basic preloading can be a simple as:
function loadImages() {
$.each(arguments, function(i, url) {
var image = new Image();
image.onload = function() {
// do som
Hello,
I am trying to preload some images using either one of the functions
below. They don't seem to load. I really could use your help here.
/// version 1
jQuery.preloadImages = function()
{
for(var i = 0; i').attr('src', arguments[i]);
}
}
/// version 2 (not quite like the or
Chris W. Parker schrieb:
Hello,
Maybe this has everything to do with implementation and is not a fault
of jQuery but I've always wondered why animations (like slideDown) do
not finish smoothly.
Case in point: http://leandrovieira.com/projects/jquery/lightbox/
The animation is smooth until the
The test.js file has this line twice:
$(document).ready(function(){
It looks like the second one is there by mistake.
-Mike
> From: voltron
> Yes I get it too, adding the missing "}" does not help,
> reformatting the JS causes unterminated string errors. The
> code is exactly the same as you
Yes I get it too, adding the missing "}" does not help, reformatting
the JS causes unterminated string errors. The code is exactly the same
as you posted
On Sep 25, 11:31 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote:
> voltron schrieb:> Here is a test page:
> >http://www.nhytro.de/apache2-default
Do you have a live version I can look at?
On 9/25/07, Potluri <[EMAIL PROTECTED]> wrote:
>
>
>
> I very much understood what you said and tried it. but I'm getting null
> value
> from cookie
> var tempRows = new Array();
> tempRows.push({name:"vj",rollNo:10});
> tempRows.push({name:"vj",ro
I very much understood what you said and tried it. but I'm getting null value
from cookie
var tempRows = new Array();
tempRows.push({name:"vj",rollNo:10});
tempRows.push({name:"vj",rollNo:10});
var v = objectToQueryString(tempRows,"&");
alert(v); // which prints
_name##"vj"**rollNo##1
The jQuery collection is empty ... meaning it didn't match any any elements.
Which means my_element.length == 0
--
Brandon Aaron
On 9/25/07, Eridius <[EMAIL PROTECTED]> wrote:
>
>
>
> [Exception... "'Dimensions: jQuery collection is empty' when calling
> method:
> [nsIDOMEventListener::handleEven
Jorn,
Is there an ETA on version 1.2 of your validation plugin?
Thanks,
Aaron
--
Aaron Heimlich
Web Developer
[EMAIL PROTECTED]
http://aheimlich.freepgs.com
Is #open_menu an ?
If yes, put return false after the alert.
Glen
On 9/25/07, kamiseq <[EMAIL PROTECTED]> wrote:
>
>
> this is the code
> $('#open_menu').click(function(){
> $(this).next().filter('div').removeClass('hidden');
> alert('dd');
> });
> everything is fine until I w
Can you post this example online?
Glen
On 9/25/07, kamiseq <[EMAIL PROTECTED]> wrote:
>
>
>
> I ve just downloaded new version of jquery 1.2.1 and i tried to do sth
> like
> that
>
> menu
>
>
> zamknij
> login.html?form_action=logo
Are you saying speed? Or ease of programming?
Personally I like the second. But I wouldn't call it TopLink, I would call
it and valURL I would rename to HREF. :)
Then you could find all of the topLinks in the XML with one selector.
$("topLinks").
Either one is perfectly easy to manage with jQu
I think event.target is what you're looking for all around, does that sound
right?
//PAGINATION
var $target = $(event.target);
if ($target.is("a.pagination"))
{
$target.parent().load($target.attr("href"));
return false;
}
-Mike
>
Matt81 schrieb:
Hi there.
I'm currently working on a site where I load in a series of links (in
a list) with some pagination links underneath (a.pagination) into a
div via an ajax request.
[...]
This code does not work, and I believe the problem lies with the use
of the "this" keyword - could
Is there still the requirement that jQuery be loaded /after/ the other
lib(s)? The wiki page on this[1] doesn't explicitly say so, but I do (now)
remember it being an important point in an earlier version of those docs
when it was on the main site. I just spent a good bit of Angry Time with
some sc
Using a function like that is called an "anonymous" function, and in this
case you are passing the anonymous function to the jQuery object, which
stores it and calls on it when the DOM is finished loading.
On 9/25/07, Danjojo <[EMAIL PROTECTED]> wrote:
>
>
> 2 Questions.
>
> 1. are there the corre
Suppose I've this array object
var tempRows = new Array();
tempRows.push({name:"vj",rollNo:10});
tempRows.push({name:"kr",rollNo:20});
I tried to do this copied all of your functions and
$cookieName = 'rowCookie';
$sitedata = tempRows; /* where tempRows is array of objects */
get
Hi everyone,
I work for MP3tunes.com and wanted to tell you about a programming
contest that we are having. There are 10 categories and each one is
worth $1,000 USD (for a total of $10,000 USD).
If you're feeling up to it --- show us how you might use jQuery to
interact with our API to do someth
Anyone already has a similar approach based on jQuery? If so, is there
a chance to share it?
Regards, Erik
Hi all,
First time posting here, so please excuse me if I break something ;)
I'm developing for the firt time with jQuery, mostly because of the
tablesorter plugin, but I'm having a weird problem on the table in this
page:
http://www.zerocinco.com.br/clientes/bottero/catalogo/linha.html
In
this is the code
$('#open_menu').click(function(){
$(this).next().filter('div').removeClass('hidden');
alert('dd');
});
everything is fine until I will press ok (that shows that my code is
ok) on the alert button. then surprisingly the page is reloaded. i
really dont have any
Hello all,
I'm new to jquery, so forgive me if I'm asking questions which have
been asked a thousand times. I've searched through the list archives
and not had much luck with this one.
I'm using the focusfields plugin, which I found here:
http://www.texotela.co.uk/code/jquery/focusfields/
It
Hi everyone knows how jquery works, but a project that needs to handle
large amount of dynamic like Meboo.com , how actually coding in jquery
will win prototype ? and which is the best practice to code in ? for
example , each Tabs is dynamic, add , remove, rename, disable, hide,
show and every new
I would just like to say that the following article on upgrading to
1.2 and rewriting for the removed Dom traversal methods and Xpath
electors was very well written.
http://www.learningjquery.com/2007/09/upgrading-to-jquery-12#more-71
I understand quite alot about the jQuery changes by reading i
Hello everyone, I think Ill go go nuts!
I already posted something about problem Im facing with but I didn't
get the right answer so Ill try again by expaining my problem further.
My PHP website is organised in following manner:
MAin file is index.php and it includes other files. So, my
"compon
Hi there.
I'm currently working on a site where I load in a series of links (in
a list) with some pagination links underneath (a.pagination) into a
div via an ajax request.
In order to bind click events to the anchors with a class pagination,
I've used the technique outlined on the jQuery websit
I ve just downloaded new version of jquery 1.2.1 and i tried to do sth like
that
menu
zamknij
login.html?form_action=logout wyloguj
start.html start
2 Questions.
1. are there the correct number of parenthesis in this code. Is there
a syntax error? It runs fine..
2. What is this idea of wrapping the code in like a blank function()
with no name? The one the looks like $function() ? I don't understand
it and I want to. Being a noob javascript c
I'm using the latest jQuery and Interface. When I hover over an area
with a ToolTip function assigned -- which works great -- the tooltip
appears over most of the page, but under any dropdown lists on the
form.
Is there a good way around this? I've searched the archives, and only
found one men
I ve just downloaded new version of jquery 1.2.1 and i tried to do sth
like that
menu
zamknij
wyloguj
start
kontrahent
Was the main reason for the removal of XPath from the jQuery library
to keep the core library small?
If I am purposing to consume XML it seems logical that the XML be
designed the best that it can FIRST before consuming with more complex
javascript, xpath, or your flavor of the month.
In that regard is what I have desinged easy to consume using jquery/
ajax?
SMC Home
Login
There are some other errors to correct...the plugin has strange
behaviours :(
On Sep 18, 9:04 pm, Adam Messinger <[EMAIL PROTECTED]> wrote:
> On Sep 18, 10:23 am, stef <[EMAIL PROTECTED]> wrote:
>
> > the error i get in firebug is:
>
> > tLi.gt is not a function
> > ul.prepend(tLi.gt(tl-v-1).clon
Is it planned an upgrade for jQuery 1.2? :(
Anybody?
On 9/25/07, FrankTudor <[EMAIL PROTECTED]> wrote:
>
> As a user types in content to this this text field I would like tho
> force the text to uppercase to as keys are pressed.
>
> How would this be done?
>
> and is toUpperCase a real jquery function? if not wbhat would be a
> simple way
I seem to recall seeing a plugin that would take a date-entry form
field and reformat the date the user enters according to a predefined
date format. Am I making that up? I can't seem to find it now.
-- Owen
No, I used the 'places the scripts at the end of the inserted HTML'
method that I didn't want to use.
It works, but this may be something that the developers will want to
tweak.
Thanks for all your suggestions though.
On Sep 21, 4:18 am, Andy <[EMAIL PROTECTED]> wrote:
> Benjam,
>
> Did you ha
As a user types in content to this this text field I would like tho
force the text to uppercase to as keys are pressed.
How would this be done?
and is toUpperCase a real jquery function? if not wbhat would be a
simple way to hndle this with either CSS or someother method...
Here is what I hav
I've discovered the cause of the problem... slice() and eq() require
the arguments to be integers, and do not properly handle strings which
happen to only hold integers.
eq(3) != eq('3')
In my example, my problem is solved by doing the following:
stars.eq(parseInt(averageIndex)).addClass('on'
Actually, Amazon looks the same again. I wonder what they're up to over
there
On 9/25/07, Glen Lipka <[EMAIL PROTECTED]> wrote:
>
> If amazon took theirs down, you can still see a similar example on
> Microsoft. Wow, microsoft just changed their site pretty heavily.
> Try here http://msdn2.mi
Thanks a lot!
On Sep 25, 7:43 pm, "John Resig" <[EMAIL PROTECTED]> wrote:
> Sure, use the 1.1 compatibility
> plugin:http://dev.jquery.com/browser/trunk/plugins/compat-1.1/jquery.compat-...
>
> --John
>
> On 9/25/07, deerchao <[EMAIL PROTECTED]> wrote:
>
>
>
> > Hi, I'm using AjaxFileUpload
> >
I meant something like mouseover - mouseout but in the context of
keybord celection I used deselect phrase...
Ill try this in a minute,
thank you
On Sep 24, 4:48 pm, "Glen Lipka" <[EMAIL PROTECTED]> wrote:
> Check out this page to see the available events:http://docs.jquery.com/Events
>
> O
Hi
Im newbie with Javascript/jQuery so this question may be lame...
I have something like that:
$.get('istracked.php',{'code': code}, function(data) {
if (data=='true')
{
r=true;
}
});
How can I use "r" outside $.get ?
$.get returns XMLHttpRequest
at the moment I know only one solution:
i
Hi!
That does the trick! thank you!
On Sep 25, 3:25 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote:
> On Sep 25, 2007, at 4:14 AM, Simpel wrote:
>
>
>
>
>
> > Hi everybody
>
> > I'm looking for a plugin or something like that witch has the same
> > functionality as the categories onhttp://www.devia
The site is too slow.
Look into some benchmarks.
On Sep 24, 7:17 am, Gordon <[EMAIL PROTECTED]> wrote:
> Well it's finally ready enough to go live so now I can plug the big
> jQuery-driven project I've been working on. It's called IT Assistant
> and is intended to make shopping to IT equipment
Hi guys,
In the same way I have used the cookie value to set which country flag
image is used, could I also alter the url: value in the $.ajax
funtion?
var country = $.cookie('language'); // get cookie
$('#countryFlag').attr("src", "images/" + country + ".gif");
$.ajax(
Hello all,
I'm new to jquery, so forgive me if I'm asking questions which have
been asked a thousand times. I've searched through the list archives
and not had much luck with this one.
I'm using the focusfields plugin, which I found here:
http://www.texotela.co.uk/code/jquery/focusfields/
On Sep 25, 5:43 am, Fabrizio <[EMAIL PROTECTED]> wrote:
> I try to use this google group and it's the first time I use a google
> group. I wrote 3 differents message. I have a reply on only one of
> this but I never seen my new message on the list of the discussion.
>
> If some body could help to
hi all, im trying to get the curvy corners plugin to work in safari
and cant seem to do it.
I use the code below and it works fine in all browsers but Safari
$(document).ready(function(){
var settings = {
tl: { radius: 10 },
tr: { radius: 10 },
bl: { radius: 1
> Is there an non javascript way to avoid "enter" keystroke in an input
> to trigger the form submit or am I forced to catch keystroke code 13
> in javascript ?
>
> If force to do in javascript, is there a way to catch keystroke event
> of only one input and not window object ? Is there already a
2ways.
1. remove the type=submit button. you need to also use javascript to
submit form.
2. add key down, key up etc. on any elements you want to avoid enter,
not only window.
On 9月25日, 下午1时05分, "Fabien Meghazi" <[EMAIL PROTECTED]> wrote:
> Hi,
>
> Is there an non javascript way to avoid "enter
The other Frenchman is hiding. :)
Your message showed up fine.
On Sep 25, 5:43 am, Fabrizio <[EMAIL PROTECTED]> wrote:
> Hello ,
>
> I try to use this google group and it's the first time I use a google
> group. I wrote 3 differents message. I have a reply on only one of
> this but I never seen
Thank you.
I will have a look.
On Sep 24, 9:21 pm, Giant Jam Sandwich <[EMAIL PROTECTED]> wrote:
> This is a tutorial I posted this evening. I thought I might throw it
> up here in case anyone was interested.
>
> http://blog.reindel.com/2007/09/24/jquery-and-xml-revisited/
>
> Brian Reindel
> d
I am continuing to read the documentation at
http://docs.jquery.com/Specifying_the_Data_Type_for_AJAX_Requests
On Sep 24, 4:02 pm, Danjojo <[EMAIL PROTECTED]> wrote:
> Hi, thank you for helping me begin down this path.
>
> Before I use the $.ajax function, do I need to install a codebase for
> it
Yes, I think you can do it in many ways...
1. remove button. Then the enter will not
invoke form's submit. But you should add form submit function in
somewhere.
2. You can catch the 13 keycode in any element's key event, not only
window object.
On 9月25日, 下午1时05分, "Fabien Meghazi" <[EMAIL PROTE
I think I can help with a suggestion.
When I came in as a first time user. I worked the first example up top
fine (the one with just the submit button).
Very fast, nice.
Then I went to the second one. At first thought it was similar. Add a
few then saw I could remove. So I tried removing from t
Before I use the $.ajax function, do I need to install a codebase for
it?
I notice it is similar to Klaus Hartl cookie plugin, where I install
his codebase, then use it later like var country =
$.cookie('language');
When I start to use this code it seems almost like the rest of the
working jQuer
hi all, im trying to get the curvy corners plugin to work in safari and cant
seem to do it.
I use the code below and it works fine in all browsers but Safari
$(document).ready(function(){
var settings = {
tl: { radius: 10 },
tr: { radius: 10 },
bl: { radius:
[Exception... "'Dimensions: jQuery collection is empty' when calling method:
[nsIDOMEventListener::handleEvent]" nsresult: "0x8057001e
(NS_ERROR_XPC_JS_THREW_STRING)" location: "" data: no]
anyone know why this would happen? here is that this happens on:
$('.input:eq(' + index + ')').livequery
Jean schrieb:
Sorry for my previous email talking about the limitation of Validate
plugin with 50 or more elements to validade. Is not an error but the
script stops in this line
Can you post a test page for that issue?
-- Jörn
voltron schrieb:
Here is a test page:
http://www.nhytro.de/apache2-default/test_validation.html
I get "missing } after function body" on line 24 of test.js via Firebug
console (www.getfirebug.com).
-- Jörn
Hi can you please tell me the syntax of calling these functions. I tried to
do the following.
var $cookieName = "arrCookie" //Assuming this is the cookie name
where the value of the cookie is been set like in my case value should be
array of objects?.
1>> how to set value of this cookie ?
I have a variable $sitedata, an object, that is structured like:
{
'fname':null,
'lname':null,
moduleLevel: {
bPassed: null,
bContentComplete: null,
iNumAttempts: null,
dDateStart: month + "/" + day + "/" + year,//"6/25/2007",
dDateEnd: null,
sdsdfsdfds
> Date: Mon, 24 Sep 2007 22:08:06 +0200> From: [EMAIL PROTECTED]> To:
> jquery-en@googlegroups.com> Subject: [jQuery] Re: an "Undo" plugin, or
> something as such. :-)> > > Steve Finkelstein schrieb:> > Hi all,> >> > I was
> curious if there is anyone currently working on an 'Undo' t
Sorry for my previous email talking about the limitation of Validate
plugin with 50 or more elements to validade. Is not an error but the
script stops in this line
line 487
lem.tagName && elem.ownerDocument && !elem.ownerDocument.body;
jquery-1.2.1
--
[]´s Jean
www.suissa.info
Ethereal Age
Is a limite of how much inputs we can validate? I have a form with 52
questions what is {required:true} very required. In a 29 questions
required it works fine!
--
[]´s Jean
www.suissa.info
Ethereal Agency
www.etherealagency.com
Here is a test page:
http://www.nhytro.de/apache2-default/test_validation.html
Thanks
On Sep 25, 7:50 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote:
> voltron schrieb:> Yes, I added the method, this is what I have now [...]
>
> I can't see anything wrong with that. Can you post a test page?
>
>
Thanks for your great help. But I'm finding hard to know the exact syntax of
how to use these functions. Can you tell me exact syntax of how to use
these functions objectToQueryString and the function queryStringToObject
given the array name "arrObject" which contains array of objects.
Waitin
Have i write my parser for dd/mm/ date format? The plugin use mm/dd/
either i changing in plugin configs
--
[]´s Jean
www.suissa.info
Ethereal Agency
www.etherealagency.com
Vijay,
I answered your question in your other posting.
On 9/25/07, Potluri <[EMAIL PROTECTED]> wrote:
>
>
>
> Hi,
> I'm having trouble storing array of objects into cookie like
> var arr = [];
> arr.push({index:1,name:"vijay"});
> arr.push({index:2,name:"krish"});
>
> When I'm trying to store ar
You can't store an Object/Array into a cookie, you will get the result you
are currently seeing. The code I provided with convert your object into a
querystring, which can be stored, and stores that and when you want to
retrieve it, you pass the returned cookie value to the other function and it
c
Nice thanks, I will upgrade it. Do you know how I would actually use it
in an application? I see demos which show how to use it but nothing that
shows it in production use. Im looking to use it to pull articles
Glen Lipka wrote:
I think that version has been upgraded. Check these links:
http
Hi,
I'm having trouble storing array of objects into cookie like
var arr = [];
arr.push({index:1,name:"vijay"});
arr.push({index:2,name:"krish"});
When I'm trying to store array of objects into cookie usin g jquery cookie
plugin like
$.cookie("arrCookie",arr);, It's not storing array object b
I think that version has been upgraded. Check these links:
http://docs.jquery.com/UI/Slider
http://dev.jquery.com/view/trunk/plugins/ui/demos/ui.slider.html
Glen
On 9/25/07, Anthony Leboeuf(Worcester Wide Web) <
[EMAIL PROTECTED]> wrote:
>
> Hello everyone, I am designing the BBB site and they
Hello everyone, I am designing the BBB site and they gave me a template
which uses the jquery slider. But unfortunatley they didnt tell me how
it works lol. Would anyone know how you would use a slider this way to
display results according to day? Im assuming theres definatley ajax
involved htt
Sorry I didn't understand what you are trying to say. How this solves my
problem of storing array of objects into the cookie. Can you try on your
side of storing array of objects into cookie, so that later when I try to to
retrive value from cookie I need to get array of objects but not string
wh
Michael Geary schrieb:
I'll tidy up the undo code to make a nice plugin release out of it, but there
it is in case anyone wants to take a look at it now.
I'd be interested in any feedback on the issues I mentioned in my previous
message. (I'd mentioned saving the undo/redo queue in a
hidden fo
Danjojo schrieb:
Hi, thank you for helping me begin down this path.
Before I use the $.ajax function, do I need to install a codebase for
it?
Nope, $.ajax is part of jQuery core.
Please note that my example code in the success-callback was just that:
an example. You need to modify that!
W
voltron schrieb:
Yes, I added the method, this is what I have now [...]
I can't see anything wrong with that. Can you post a test page?
It may also help to use the debug-option, just specify validate({ debug:
true, ...}).
-- Jörn
Vij,
I am actually using the following functions in an app that uses the cookie
plugin:
/**
* @name sterilizeQueryString
* @type function
* @param {String} input
* @desc Turns a query string into an object
* @return Object b
*/
sterilizeQueryString = function(input,splitt
Inside the plugin this is actually the jQuery object that the plugin was
called on.
(function($) {
$.fn.plugin = function() {
console.log(this); // the jQuery collection/object
};
})(jQuery);
--
Brandon Aaron
On 9/25/07, Eridius <[EMAIL PROTECTED]> wrote:
>
>
>
> Ok, lets say
I don't see this is a problem with cookie plugin in particular but this is
problem with cookie itself.
Suppose this is the array
var arr = [];
arr.push({name:"vj",rollNo:10});
arr.push({name:"kr",rollNo:15});
The size of arr is 2 before storing in cookie
I tried to store this array object in a
Ok, lets say i make a plugin using this (function())(jQuery) format and it
works like this:
$('#something').plugin();
Now inside the plugin this is the access for the class, how do i access the
jquery object that the plugin was called on?
--
View this message in context:
http://www.nabble.com
Howdy, I'm jumping in late to the conversation here.
As Brandon pointed out there were some updates to dimensions/jQuery core
that need to be updated in the plugin. I have a rewrite nearing completion
which I'm working hard at trying to have completed and published by Ajax
Experience at the end of
If that is the case, would would the replacement be for those functions as i
would rather edit the code myself and use the newer version(along with
passing the new code to the author of jdmenu so he can release a working
version for the latest dimensions). Worst case i should be able to pull
tho
Hmmm it looks like jdmenu is using either innerWidth/Height or
outerWidth/Height on the window which was removed in the latest SVN of
dimensions. Using the older version of dimensions along with UI shouldn't
give you any trouble at least until either dimensions or jdmenu is updated.
--
Brandon Aar
I really need a hand with my IT Assistant project (http://www.pcwb.com/
assistants/) and an issue in Safari version 2. As it works in Safari
3/Win I'm assuming that it's a bug in Safari itself, but as our
website stats indicate that Safari 2 is the most popular version by
far it's something I nee
Brian Rinaldi has gone through the effort of simplifying server-side
implementation of the jQuery UI TableSorter control within the
ColdFusion application server. You can read more here:
http://www.remotesynthesis.com/blog/index.cfm/2007/9/25/Sortable-Table-ColdFusion-Custom-Tag-with-jQueryUI
A demo of the issue is at:
www.kaizendigital.com/index2.php
Note you have to use FF right now cause IE is even more broken. if you
hover over products, you will get the error. can't test out a unpack till
later tonight.
Brandon Aaron wrote:
>
> Okay ... sorry for the confusion. I'm just tr
Okay ... sorry for the confusion. I'm just trying to figure out if it is
actually a compatibility issue with dimensions or just jQuery 1.2. So if you
use jQuery 1.2 + older dimensions it works as expected but when you add UI
and new dimensions it breaks?
Could you use the unpacked source to get a
If amazon took theirs down, you can still see a similar example on
Microsoft. Wow, microsoft just changed their site pretty heavily.
Try here http://msdn2.microsoft.com/en-us/default.aspx
They optimize for IE7 of course. Top right link.
Glen
On 9/24/07, Pete Bekisz <[EMAIL PROTECTED]> wrote:
>
1 - 100 of 135 matches
Mail list logo