thanks everyone :)
On Sep 14, 2:07 am, Flesler <[EMAIL PROTECTED]> wrote:
> How do you make the popup appear ?
> If you do this when clicking another DOM element... do this:
>
> let's say the trigger has an ID "trigger"... and the popup div, ID
> "popup".
>
> $(function(){
> $('#trigger').cli
Personally, I find that limiting oneself to a single library is too
restrictive. For my situation, we've "approved" jquery and YUI, primarily
because they're well-documented. Difficulty aside, if you need to
complete a task, looking at the docs long enough will get you there. I'm
thinking of mi
Aha! Got it.
I changed the file name to
http://www.commadot.com/jquery/selectorFilterCSS.php
Works perfectly now. Thank you.
Glen
On 9/18/07, Erik Beeson <[EMAIL PROTECTED]> wrote:
>
>
> JavaScript, where newlines will get converted to statement breaks
> automatically!
>
> So:
> return
> "foo"
JavaScript, where newlines will get converted to statement breaks automatically!
So:
return
"foo";
Is actually being processed as:
return;
"foo";
See the problem yet? :) The problem is your formatting, not the code.
--Erik
On 9/18/07, Glen Lipka <[EMAIL PROTECTED]> wrote:
> Still doesn't wor
Still doesn't work. :(
http://www.commadot.com/jquery/selectorNot.php
Glen
On 9/18/07, Erik Beeson <[EMAIL PROTECTED]> wrote:
>
>
> > Andy, I can't seem to get this code below to work.
> > http://www.commadot.com/jquery/selectorNot.php
>
> You want:
>
> $('#container').children().filter(functi
> Andy, I can't seem to get this code below to work.
> http://www.commadot.com/jquery/selectorNot.php
You want:
$('#container').children().filter(function() {return
$(this).css('position') == 'relative';})...;
That $('div', this) that you're doing is looking for divs that are
children of your
Andy, I can't seem to get this code below to work.
http://www.commadot.com/jquery/selectorNot.php
Glen
On 9/18/07, Andy Matthews <[EMAIL PROTECTED]> wrote:
>
> Maybe something like this:
>
> $('#test').children().filter(function(index) {
> return $("div", this).css('position') == 'relative'
There have been quite a few threads on slashdot about problems with
them, ranging from technical incompetence to shoddy business
practices:
http://www.google.com/search?q=site%3Aslashdot.org+godaddy
It's perhaps somewhat telling when a google search for a site brings
up sites about why that site
Thanks for clearing that up, Erik.
What kind of things have you heard about GoDaddy hosting?
Rick
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Erik Beeson
Sent: Tuesday, September 18, 2007 7:35 PM
To: jquery-en@googlegroups.com
Subject: [jQuery] Re: Now, what
No, see here:
http://www.google.com/search?q=javascript+is+not+java
jQuery will work fine, though I've heard bad things about GoDaddy in
general.
--Erik
On 9/18/07, Rick Faircloth <[EMAIL PROTECTED]> wrote:
>
> When GoDaddy.com tells me that with a hosting account
>
> that uses ColdFusion, I c
"It's nice to see an industry titan like jQuery supporting the little guy.".
True, true. we've all had to make sacrifices over the years to keep them
afloat. :oP
Rick
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Erik Beeson
Sent: Tuesday, September 18, 2007 5
When GoDaddy.com tells me that with a hosting account
that uses ColdFusion, I can't use:
"JSP, Java servlets, and Java Objects"
does this mean I can't use jQuery?
Rick
lol... why yes, I do believe you are correct on that one :)
On 9/18/07, Stephan Beal <[EMAIL PROTECTED]> wrote:
>
>
> On Sep 19, 12:28 am, "Benjamin Sterling"
> <[EMAIL PROTECTED]> wrote:
> >
> http://benjaminsterling.com/2007/09/13/jquery-jqalbumparser-plugin-pa...
> > plug>
>
> Shouldn't that
On Sep 19, 12:28 am, "Benjamin Sterling"
<[EMAIL PROTECTED]> wrote:
> plug>http://benjaminsterling.com/2007/09/13/jquery-jqalbumparser-plugin-pa... plug>
Shouldn't that be ;)?
Stephan,
I totally agree, I've had to bump up my bandwidth (I'm the server manager, I
can do that :) ) quit a few times to handle the bandwidth and was my main
reason for building the
http://benjaminsterling.com/2007/09/13/jquery-jqalbumparser-plugin-parses-out-flickr-picasa-clientside/ plugin so
Hi, all!
The past couple of days i've been looking through some web logs and
found some really unexpected things...
a) Though jQuery-related stuff is only a small part of my website, the
vast majority of the recent traffic targets my jQuery plugins pages.
(This is not to imply that my plugins ar
Now there's a trolling subject if I've ever seen one.
I don't think the looping mechanism itself is slow. Probably your "some
manipulation" part is what's slowing you down so bad.
Here's a quick little test, performed at jquery.com using firebug console:
>>> for(var i = 0; i < 1000; i++) {$('bod
I've been thinking about using HTTP Status codes and a global ajax event to
deal with session timeouts. Here's a little example:
http://erikandcolleen.com/erik/projects/jquery/ajaxlogin/
Seems to work well in FF and Safari (both OSX). Is this a sound way of
dealing with this? And are there any re
It's nice to see an industry titan like jQuery supporting the little guy.
--Erik
On 9/18/07, Rick Faircloth <[EMAIL PROTECTED]> wrote:
>
> Well… even if they were, we would just have to forgive Google… they
>
> don't have much money around there…
>
>
>
> Rick
>
>
>
> *From:* jquery-en@googlegro
Hi,
looping with jquery is quite slow, but still I want to continue with
jquery looping(not custom looping) for reasons I can't explain right now.
In my scenario I've to loop through rows of table and update the sequence of
rows on table dynamically.
suppose I've table with id "tableId".
Well. even if they were, we would just have to forgive Google. they
don't have much money around there.
Rick
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Erik Beeson
Sent: Tuesday, September 18, 2007 3:52 PM
To: jquery-en@googlegroups.com
Subject: [jQuery] Re: [S
Also, if you used CSS to give a class to the ones with position absolute
then you could use:
$("#test .relative")
Glen
On 9/18/07, Glen Lipka <[EMAIL PROTECTED]> wrote:
>
> Just looking at the moreSelectors plugin.
> I think it would be a nice addition to add :css("rule","value") to the
> moreSel
Just looking at the moreSelectors plugin.
I think it would be a nice addition to add :css("rule","value") to the
moreSelectors plugin.
Like $(#test *:css(''position,'relative')")
Glen
On 9/18/07, Andy Matthews <[EMAIL PROTECTED]> wrote:
>
> Maybe something like this:
>
> $('#test').children().fi
Ick, don't check the content. That's very ugly. You could always return JSON
objects that include status information, or better yet, use HTTP status
codes.
I'll provide an example in a new thread.
--Erik
On 9/18/07, dougXN <[EMAIL PROTECTED]> wrote:
>
>
> We have a website that requires login.
Some random, non-code reasons:
- jQuery has significantly wider adoption and user base.
http://www.google.com/trends?q=jquery%2C+yahoo+ui
- jQuery has a significantly more active community.
YUI had 1559 list posts last month, jQuery had 4343
- We have books (2 out now, 1 more in the works)
- Y
Yah, I thought i did. When I posted it, it said it would temporarily
put it on this list. I had no idea why and it hasn't moved yet. I'll
try again.
On Sep 18, 1:17 pm, "John Resig" <[EMAIL PROTECTED]> wrote:
> You should bring this up on the jQuery UI mailing
> list:http://groups.google.com/
Hi Jeffrey,
I'd like a copy, too. I emailed you direct (off group), but maybe you
didn't get it.
Thx much,
Jack
Jeffrey Kretz wrote:
I've ironed out the bug I found, and sent the source files/binaries to Sam
and Keith.
Soon I should have these files hosted properly. If anyone else would l
Maybe something like this:
$('#test').children().filter(function(index) {
return $("div", this).css('position') == 'relative';
})
_
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Geoffrey Knutzen
Sent: Tuesday, September 18, 2007 3:32 PM
To: jquery-en@google
-Bump-
Anyone have any ideas?
_
From: Geoffrey Knutzen [mailto:[EMAIL PROTECTED]
Sent: Friday, September 14, 2007 3:24 PM
To: 'jquery-en@googlegroups.com'
Subject: Selecting relative or absolute positioned elements
Inside a given div, say of id #test, how do I select all e
UI is an overkill for what I need. I don't need an actual interface
library, I just need a few effects. It sucks that Interface is no
more. I guess I am gonna have to animate on my own :) Thanks everyone
for help!
On Sep 18, 7:58 am, Gordon <[EMAIL PROTECTED]> wrote:
> My understanding is that t
You should bring this up on the jQuery UI mailing list:
http://groups.google.com/group/jquery-ui
--John
On 9/18/07, Justin Sepulveda <[EMAIL PROTECTED]> wrote:
>
> I'm sure there's something simple i'm missing here.
>
> http://www.robustness.org/temp/tabs/tester.html
>
> When you click on the se
"Better choice" is relative.
To me, YUI is unacceptable because I tried 3 times to show/hide a simple
div, and could not for the life of me figure it out.
I also posted to their mailing list and got no response.
However, I know people who love it because its namespacing is very
predictable. Some
Ah Wonderful! It worked perfect!! I am using 1.2.1
Thanks for your time
--
HLS
On Sep 18, 3:46 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote:
> Hi Hector,
>
> John Resig wrote a plugin method a while back called .nextUntil() ,
> which I thought was going to make it into version 1.2, but appare
We have a website that requires login. When we go to the site, if the
login has expired we get a screen that logs us in, then redirects us
to our initial request.
The problem is that if the request is a jquery/ajax .load(,
'mydiv'), it does not go into the div it justs loaded the whole bloody
I also would be interested in seeing a dynamic matrix out there as
well if nothing else just to educate myself and see what the hot
feature points are out there.
On Sep 18, 3:51 pm, "Priest, James (NIH/NIEHS) [C]"
<[EMAIL PROTECTED]> wrote:
> Tomorrow in our weekly meeting someone is going to dis
No yet, but in next time I will post something ;)
On 18 set, 01:54, edavis <[EMAIL PROTECTED]> wrote:
> I am looking into refactoring AutoSuggest to use jQuery. Any progress
> on your side?
>
> On Sep 10, 2:07 pm, Alexsandro_xpt <[EMAIL PROTECTED]> wrote:
>
> > Please.. somebody...
My first thought was, "Hey! They're hotlinking it! How dare!" But then I
realized they're hotlinking to a file they're hosting, so I guess they can
do that :)
--Erik
On 9/18/07, Rey Bango <[EMAIL PROTECTED]> wrote:
>
>
> The next time you hear someone say that jQuery isn't a mature framework,
>
Tomorrow in our weekly meeting someone is going to discuss YUI and the
possibilities of adopting it as a standard.
I'm looking for opinions why jQuery may be a better choice!! :)
I know this is a delicate topic and that there is no 'right' answer...
Feel free to email me offlist if you like.
Do
Hi Hector,
John Resig wrote a plugin method a while back called .nextUntil() ,
which I thought was going to make it into version 1.2, but apparently
it didn't. I see nextAll(), but that doesn't quite do what you want
either.
I don't have time to test this to make sure it works with 1.2, b
And it can barely be used by Java developers. It's good for making gmail and
google reader, but I found it pretty difficult to deal with in general. It's
really wants to hijack your whole application, and doesn't play well with
anything that's not made to work with it, in my (limited) experience.
I'm using the Cycle plugin to create a slideshow of linked images on
this development version of a client's site:
http://www.zenscope.com/bwss/
My client, who uses Safari 2.0.4 as his primary browser, reports that
the slideshow fades to white after the first image and then does
nothing. The demo
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).clone()).append(tLi.lt(v).clone());
If you're using jQuery 1.2.x, try adding the 1.1.x compatibility
plugin into the mix:
http://jquery.com/plugins/projec
I have an idea to get a mockup of a new site working in 2 languages
WITHOUT being connected to a relational database. So my idea is to
have an xml file with custom tags, a version for the English language
and a version with the Japanese language.
Can I use JQuery to traverse an xml document in th
I have a table with some is used as divide other rows:
...
..
..
..
..
...
..
..
etc.
In lieu of changng the HTML page, I want to see if I can find the
after each class="versionSection" row. I want to do a toggler for
each section.
//-
I'm sure there's something simple i'm missing here.
http://www.robustness.org/temp/tabs/tester.html
When you click on the second tabset (four,five & six) that is within
the first tab, it hides the entire second tabset. Why?
OK sorry, lt and gt are NOT in 1.2.1. I was not using the part of
jCarouselLite that invokes those methods. Sorry about that.
-- Josh
- Original Message -
From: "stef" <[EMAIL PROTECTED]>
To: "jQuery (English)"
Sent: Tuesday, September 18, 2007 8:23 AM
Subject: [jQuery] errors u
On Sep 18, 9:33 am, FrankTudor <[EMAIL PROTECTED]> wrote:
> var s = $('select').serializeArray(), t = [];
> $.each(s,function(n,v){ t[t.length]=v.value; });
> $('textarea').val(t.join('\n'));
>
> Hi I understand maybe 40 percent of the above code. Ca
Hold the phone -- looks like lt and gt are back in jQuery 1.2.1. I just
fired up jCarouselLite with 1.2.1 and it works fine. I can't find lt and gt
as methods in the 1.2.1 source code, but no errors are thrown. Can anyone
confirm?
-- Josh
- Original Message -
From: "stef" <[EMA
I think that will only replace the first one. To replace all of them, you
need /\n/g like Pops suggested.
--Erik
On 9/18/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
>
> There is no such jQuery function.
> Fortunately, JavaScript the language itself provides use with
> String.replace().
>
Not a jQuery method but a String "replace" method. Try this:
var s = $().text();
s.replace(/\n/g,"");
---
HLS
On Sep 18, 12:03 pm, Mike Miller <[EMAIL PROTECTED]> wrote:
> Are there any jquery functions that can take a text value and convert
> any newlines to tags?
I've ironed out the bug I found, and sent the source files/binaries to Sam
and Keith.
Soon I should have these files hosted properly. If anyone else would like a
copy of it, let me know.
JK
There is no such jQuery function.
Fortunately, JavaScript the language itself provides use with
String.replace().
Use like this:
var multiline_string = "Hello\nWorld\n!\n";
multiline_string = multiline_string.replace("\n", "");
alert(multiline_string);
// output: HelloWorld!
HTH,
Rick
On Sep
Before giving practical solutions, I'd like to invite you to think
about this question. Is this a server-side or a client-side matter? In
other words, does this have to do with the server-response or the
server-request?
It's obvious that it's server-side because it has to do with the
server-respo
Hey Luka,
one way to do this would be to check in your somefile.php if it's an
ajax or regular call, and if it's an ajax call just return the variable, eg:
if(isset($_SERVER['HTTP_X_REQUESTED_WITH']) &&
$_SERVER['HTTP_X_REQUESTED_WITH'] == 'XMLHttpRequest') {
//ajax request
print $var;
I'll be happy to send this to you (and to Ko). I found a bug in the code
this morning, which I'll handle first. I'm going to set this up on a
website (just got the domain name for JSPACKER.NET) and an SVN repository.
I'll update this thread as soon as I've ironed out the bug.
JK
-Original
Google Web Toolkit is for Java developers (run server side), so it
can't be used for those who may use ASP.NET, PHP, CFML etc
On Sep 18, 5:25 pm, Anjanesh <[EMAIL PROTECTED]> wrote:
> Wow ! I really thought prototypejs being the more popular one
> !http://www.prototypejs.org/real-world
>
> Odd,
Very nice congratz jquery!
Tane Piper wrote:
Aww, that's just brilliant :)
Also:
digg.com
technorati.com
sourceforge.net
These are just a few that use jQuery
On 9/18/07, Rey Bango <[EMAIL PROTECTED]> wrote:
The next time you hear someone say that jQuery isn't a mature framework,
be sure
Hello everyone,
Is it possible to send ajax call for somefile.php and get just value
of one php variable generated by that server
script?
Example:
$.post( blog.php?task=checkname,
{ime:$(\"#ime\").val()},
function(msg){
alert(msg);
});
This ajax
The problem is... the code is not generated by me, it is generated
by a PHP function.
As I stated in my first post, when I move the script to the bottom of
the code block, below the form tag, it runs fine. But I don't want to
do that.
And this is just exposing an underlying issue of script not
Stef - lt and gt are missing from jQuery 1.2 and 1.2.1. You'll need to roll
back to jQuery 1.1.4 if you want to use jCarouselLite, or try modding the
jCarouselLite code yourself.
-- Josh
- Original Message -
From: "stef" <[EMAIL PROTECTED]>
To: "jQuery (English)"
Sent: Tuesday, S
Hi
All this time I was using AJAX natively. But now Im getting the hang
of jQuery.
I normally want to check if Im getting a 200, 404, 500 etc response
status on success
[code]
var xhr = NewXMLHttpRequest();
xhr.onreadystatechange = xhrChange;
function xhrChange()
{
switch (xhr.readySt
Wow ! I really thought prototypejs being the more popular one !
http://www.prototypejs.org/real-world
Odd, I thought Google Web Toolkit (http://code.google.com/webtoolkit/)
was another JavaScript framework.
Yeah, I noticed that too.
Look at the rest of the code for that page. I see a jillion places they
could reduce the code complexity. Examples:
document.getElementById('searchbox_demo');
q.style.background = '#ff';
q.onfocus = f;
q.onblur = b;
Part of it is pure obfuscation. But a ton of it c
Looks like it is being used to show the Google Code blog posts and
featured projects. Maybe they will use some of the more advanced
features someday.
On Sep 18, 3:54 pm, Rey Bango <[EMAIL PROTECTED]> wrote:
> The next time you hear someone say that jQuery isn't a mature framework,
> be sure to p
Are there any jquery functions that can take a text value and convert
any newlines to tags?
Hi
how are the plugins rated and sorted in the "Browse Plugins" ==> "most
popular" link?
It doesn't seem that they are sorted neither by the average rating nor
by the number of votes.
is there any other criteria? (like downloads)
also the "browse by date" does not seem to work. is it supposed to
UI is as modular as Interface. You can select just the modules/plugins you
want. The downloader will even ensure that dependent parts are included.
Version 1.0 does not have effects, so it's not a complete replacement (yet)
for Interface, but they're on the roadmap.
If there are particular effects
Place the code into a function and then call that function immediately
after the HTML is injected.
L
Benjam Welker wrote:
I posted about this yesterday, but it never showed up...
I have a script that grabs some HTML (with included javascript) via AJAX
and injects the HTML into the page. T
Aww, that's just brilliant :)
Also:
digg.com
technorati.com
sourceforge.net
These are just a few that use jQuery
On 9/18/07, Rey Bango <[EMAIL PROTECTED]> wrote:
>
> The next time you hear someone say that jQuery isn't a mature framework,
> be sure to point them to this URL:
>
> http://code.go
cant get this to work, even though ive just taken over the exact code
from the demo. im trying to make it scroll autmatically through a set
of images. my js is
$(document).ready(function(){
$(".anyClass").jCarouselLite({
auto: 800,
speed: 1000
});
});
html:
success!
On 9/17/07, KushM <[EMAIL PROTECTED]> wrote:
>
>
> test
>
--
Aaron Heimlich
Web Developer
[EMAIL PROTECTED]
http://aheimlich.freepgs.com
Woot!
On 9/18/07, Rey Bango <[EMAIL PROTECTED]> wrote:
>
>
> The next time you hear someone say that jQuery isn't a mature framework,
> be sure to point them to this URL:
>
> http://code.google.com/
>
> The way I see it is if Google feels confident enough to use jQuery, then
> that speaks volumes
$(document).ready(function() {
run script here ...
})
On Sep 18, 3:46 pm, Benjam Welker <[EMAIL PROTECTED]> wrote:
> I posted about this yesterday, but it never showed up...
>
> I have a script that grabs some HTML (with included javascript) via AJAX
> and injects the HTML into the page. The p
hm is no one else experiencing this problem?
On Sep 17, 6:02 pm, real <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I've tested the iAutoscroller from the Interface plugin and it doesn't
> seem to work when a DOCTYPE is declared, in either Firefox or IE. Is
> there something I'm missing, or is there a wor
Ok... I figured this one out. You use the animate() function in
jquery. For some real fun, you can download the easing plugin. I
started out by declaring a div called block to have a width of 0px;
Then animate like so:
$(document).ready(function(){
$("#block").animate({ width: "400px"
Solved it by removing the submithandler JS and adding saverec.php to
the action tag. Validation still works client-side and it saves. Now
for the SS ajax stuff. I'll study the sample you pointed to and see
what sort of fun that can get me into... :)
thanx for your reply, BTW...
regards
Owen
I posted about this yesterday, but it never showed up...
I have a script that grabs some HTML (with included javascript) via AJAX
and injects the HTML into the page. The problem is that the scripts
within that HTML block get executed before the HTML that it is
referencing is inserted into the
The next time you hear someone say that jQuery isn't a mature framework,
be sure to point them to this URL:
http://code.google.com/
The way I see it is if Google feels confident enough to use jQuery, then
that speaks volumes and the naysayers can take a hike!
Rey...
I was thinking about hackable urls similar with the UI docs. Now you
have for example http://docs.jquery.com/Core after the change it would
be http://docs.jquery.com/jQuery/Core.
-- David Duymelinck
Scott Sauyet schreef:
David Duymelinck wrote:
I saw the UI documentation got the http://d
Please post to jquery-ui list.
http://groups.google.com/group/jquery-ui
Thank you.
- Richard
On 9/18/07, Matt81 <[EMAIL PROTECTED]> wrote:
>
>
>
> Hi everyone
>
> I would be very grateful if anybody could offer me some much needed help
> and
> advice with a problem I'm having.
>
> http://lexus-
Hello,
I saw the UI documentation got the http://docs.jquery.com/UI url but the
jQuery docs still have the http://docs.jquery.com/Main_Page url maybe
that could be changed to http://docs.jquery.com/jQuery ? it's just an idea.
--
David Duymelinck
[EMAIL PROTECTED]
Well I solved it, but not really. I simply stuck saverec.php back in
the action tag on the form line and voila. I am sure I did this
before and the validation went to hell. I hate when things start
working for no apparent reason. Great on one hand, but I see a
similar problem in my future some
That would fire right away, as well - since the document is already
loaded - this document fragment, however, is not loaded, which is what
he wants to wait for.
--John
On 9/18/07, Collin Allen <[EMAIL PROTECTED]> wrote:
>
> Could you possibly put a $(document).ready(function(){ ... }); inside
>
David Duymelinck wrote:
I saw the UI documentation got the http://docs.jquery.com/UI url but the
jQuery docs still have the http://docs.jquery.com/Main_Page url maybe
that could be changed to http://docs.jquery.com/jQuery ? it's just an idea.
I think the fact that http://docs.jquery.com/ red
Could you possibly put a $(document).ready(function(){ ... }); inside
the script for the "incoming" page, or does that fire right away, too?
On Sep 18, 5:46 am, "John Resig" <[EMAIL PROTECTED]> wrote:
> There was another issue who was having the same problem as you, with
> 1.2.1, I recommend doi
var s = $('select').serializeArray(), t = [];
$.each(s,function(n,v){ t[t.length]=v.value; });
$('textarea').val(t.join('\n'));
Hi I understand maybe 40 percent of the above code. Can someone
explain it? What does the brackets mean the [] brac
Hi everyone
I would be very grateful if anybody could offer me some much needed help and
advice with a problem I'm having.
http://lexus-test.lateral.net/blogfeeds/
On this site, the blog modules are draggable. I've achieved this using the
following code:
//Draggable Blog Spotl
eq is in 1.2.1, but gt and lt are not.
On Sep 18, 5:14 am, "Joan Piedra" <[EMAIL PROTECTED]> wrote:
> On 9/17/07, astik <[EMAIL PROTECTED]> wrote:
>
>
>
> > With the new version of jQuery out (1.2), some specific code is no
> > longer working ...
> > The lt and gt method are now deprecated ...
>
My understanding is that the Interface library has been depreciated in
favour of jQuery UI. I have found the Interface library to be rather
buggy even with a supported version of jQuery though, and have ended
up coming up with my own solutions to interface problems instead. I
don't think UI prov
There was another issue who was having the same problem as you, with
1.2.1, I recommend doing this inside your , at least until I
can get a fix in.