This looks fantastic. Thanks to everyone on the team for their
continued hard work. You guys rock!
- jason
On Jun 3, 1:46 pm, Rey Bango <[EMAIL PROTECTED]> wrote:
> jQuery v1.2.6 is now official and release notes have been
> posted:http://docs.jquery.com/Release:jQuery_1.2.6
>
> The biggest
> I'm using the Form Plugin to add AJAX functionality to forms on a system I'm
> building. The plugin works perfectly with regular text forms, but when I try
> to add file uploads to the mix, it dies with an error on line 209:
> form.submit(); is not a function. Using breakpoints in Firebug I've
>
Sorry guys.
There are two options you can specify for UI tabs, I forget off the
top of my head what they are (there's an example of it's usage in the
docs for UI tabs). One is for a function to be run when a tab is
clicked, the other for after the tab is loaded. So all I had to do
was set the t
Hi,
I'm using the Form Plugin to add AJAX functionality to forms on a system I'm
building. The plugin works perfectly with regular text forms, but when I try
to add file uploads to the mix, it dies with an error on line 209:
form.submit(); is not a function. Using breakpoints in Firebug I've
est
I'm sure you're tired of these.
YES I included the dimensions and the bgiframe.js files.
It just doesn't work with MSIE though. With firefox I get the results.
On MSIE however, whenever I type something, the textbox does fade in,
but the results aren't selected.
Any tips of ideas, greatly appre
What's the problem exactly? Perhaps you could provide some more detail.
- Richard
On Tue, Jun 3, 2008 at 6:04 AM, Andri <[EMAIL PROTECTED]> wrote:
>
> Is there any solution using jquery for this problem?
>
Please ask on the jQuery UI list:
http://groups.google.com/group/jquery-ui
- Richard
On Tue, Jun 3, 2008 at 3:54 AM, Arun Kumar <[EMAIL PROTECTED]>
wrote:
>
> Can I use sortables for div's that contains iFrames (Shindig gadgets)?
> that doesn't need refresh of iFrame?
>
> Inside that iFrame, I
There is a dedicated mailing list for jQuery UI plugins:
http://groups.google.com/group/jquery-ui
Here's the documentation for sortables:
http://docs.jquery.com/UI/Sortables/sortable#options (click the Options tab)
The callback you want is called 'sort'. It's called for each mousemove
during th
Assuming that the divs are siblings and you want everything after the third
element hidden, you could probably try the following
$(".divclass:nth-child(3)~.divclass").hide();
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of anthonyd
Sent: Tuesda
Howdy! I'm getting the following error in MSIE 7 using the
Autocomplete plugin from bassistence.de:
Line: 683
Char: 17
Error: Object doesn't support this property or method
Code: 0
This being IE, it's wrong about the line number, and it's actually
line 682 that has the error.
682:list.scrol
Thanks Karl,
I had searched through the jQuery site but as I was unsure what to
search for I got stuck.
That works perfectly,
Ant.
On Jun 4, 1:04 am, Karl Swedberg <[EMAIL PROTECTED]> wrote:
> Hi Anthony,
>
> Try this ...
>
> $(".divclass:gt(2)").hide()
>
> or this ...
>
> $(".divclass:gt(3)").hi
Nice! I like it very much.
Glen
On Tue, Jun 3, 2008 at 2:55 PM, Mauro Lizaur <[EMAIL PROTECTED]> wrote:
>
> On Tue, Jun 3, 2008 at 6:35 PM, Scott Sauyet <[EMAIL PROTECTED]> wrote:
> >
> > Renato Formato wrote:
> >>
> >> I've just released the jFlip plugin,
> >> a plugin to make unobtrusive flip
Hi Anthony,
Try this ...
$(".divclass:gt(2)").hide()
or this ...
$(".divclass:gt(3)").hide()
cf. http://docs.jquery.com/Selectors/gt#index
Cheers,
--Karl
Karl Swedberg
www.englishrules.com
www.learningjquery.com
On Jun 3, 2008, at 7:46 PM, anthonyd wrote:
Hello,
$("
I've encountered this myself. The issue is caused by the fact that the TinyMCE
plugin inserts other html elements into the textarea. What you have to do is
change your selector to parse down the node tree from the parent textarea down
to the child element you're actually typing into. Firebug
Very well done, Jonah!
--Karl
Karl Swedberg
www.englishrules.com
www.learningjquery.com
On Jun 3, 2008, at 7:53 AM, weepy wrote:
Hi
I've just released Cornerz 0.4
http://groups.google.com/group/cornerz
Bullet Proof Corners plugin for jQuery using Canvas/VML
* Antialias
HI guys,
I would like to know if there is a better way to force to pick up a
date in the past than the code below:
$j('.date-pick').dpSetStartDate('01/01/2000');
$j('.date-pick').dpSetEndDate(new Date().asString());
For my needs Jenuary First, 2000 is more than enough but if there was
a wa
Hello,
$(".divclass:not(:first)").hide();
Works perfectly in hiding everything after the first element with that
class but I need to hide after the third or forth element with that
class, any suggestions?
Thanks, Ant.
Hihi,
scroll is a window event. Try:
$(window).scroll(function(){
alert('W00t!');
});
On Jun 4, 2:41 am, taxpehbam <[EMAIL PROTECTED]> wrote:
> For some reason code below doesn't work in IE. I don't think i found a
> bug, maybe i'm doing something wrong?
>
> $(document).scroll(function(){
>
> $.blockUI({ message: $('#workingContainer'), css: { border: 'solid
> 2px #01ADEE', width:'470px', left:'50%' } });
>
> blockUI does NOT find/ignores my called workingContainer:
>
> src="images/shared/busy.gif" /> Retrieving data, just a moment... div>
>
> and uses the default text/css... "Ple
> > Yes, it is the way how it works. I have managed to do it as
>
> > $("tr[class^='child']")
>
> > Which selects all classes like class="child test" class="child test2" etc
>
> > However, if you make it as $("tr.child"), nothing will be selected. Tried
> > and tested many times...
>
> Post a demo
> Yes, it is the way how it works. I have managed to do it as
>
> $("tr[class^='child']")
>
> Which selects all classes like class="child test" class="child test2" etc
>
> However, if you make it as $("tr.child"), nothing will be selected. Tried
> and tested many times...
Post a demo link.
hi Joel -
thanks for the response. I couldn't get it to work, so I just hid the
3rd level for now :(
the 3rd level still retains the display:block and mouseout
Not too sure what you are trying to do but,
$("#divid").sortable({ update: function(e,ui) { alert($
('#divid').sortable('toArray')); } });
works for me.
Hope this helps, Ant.
On Jun 3, 11:17 pm, denise <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I'm very impressed with the plugins available for jQue
hmmm
For some reason,
when the following code executes:
$.blockUI({ message: $('#workingContainer'), css: { border: 'solid
2px #01ADEE', width:'470px', left:'50%' } });
blockUI does NOT find/ignores my called workingContainer:
Retrieving data, just a moment...
and uses the default text/cs
Yes, it is the way how it works. I have managed to do it as
$("tr[class^='child']")
Which selects all classes like class="child test" class="child test2" etc
However, if you make it as $("tr.child"), nothing will be selected. Tried
and tested many times...
--
View this message in context:
ht
WebResources Depot has a nice tutorial on how to build a scrolling
windows, similar to DZone's scrolling window, using jQuery:
http://www.webresourcesdepot.com/load-content-while-scrolling-with-jquery/
Rey
Hi,
I'm very impressed with the plugins available for jQuery, but I really
need callbacks during the dragging ( the way the Scriptaculous works
with its onChange method). It looks as though there used to be an
onUpdate method and an onChange method, but the more frequent callback
doesn't seem to
On Tue, Jun 3, 2008 at 6:35 PM, Scott Sauyet <[EMAIL PROTECTED]> wrote:
>
> Renato Formato wrote:
>>
>> I've just released the jFlip plugin,
>> a plugin to make unobtrusive flipping page image galleries using canvas
>> (warning: no Flash needed!).
>>
>> It works with all jquery compatible browsers
> http://www.jquery.info/The-jFlip-plugin
Very nice effect, Renato. Definitely uses a lot of CPU when it's
active, but the visual is quite nice.
> It's WAY too difficult to use with it being so close to the edge of the
> window.
I don't understand this comment at all.
Might I suggest that the author center the examples in the browser window?
It's WAY too difficult to use with it being so close to the edge of the
window.
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Scott Sauyet
Sent: Tuesday, June 03, 2008
Renato Formato wrote:
I've just released the jFlip plugin,
a plugin to make unobtrusive flipping page image galleries using canvas
(warning: no Flash needed!).
It works with all jquery compatible browsers, IE included, using an
enhanced version of excanvas I wrote.
http://www.jquery.info/T
Leanan wrote:
Thanks for the assistance, guys. All is well now.
Can you let us know what the fix was so that another person with the
same issue might have an easier time?
-- Scott
I'm working on an interface that uses slideable content areas that are
also collapsable - the idea being that users can position content on
the page as they like and then collapse content that they aren't
interested in. I call these content areas "slices". You can see a
quick test I've thrown toge
Hi all,
I've implemented superfish to display a drop down menu on this website
(http://test.milieucafe.nl/).
I noticed that when hovering on the second tier links, the
corresponding URL won't show up in the statusbar. Instead, it shows
the URL of the parent tier (top tier).
I would say this beh
I'm not understanding why you would want to "resize" everything via JS.
Wouldn't it be a helluvalot easier to use CSS with a percentage value
for height/width?
There are a more than a few articles on this on the web. A quick google
search will show you what you need. Try something like "c
hi guys i've tried things and it working.thanks to all specially to michael
geary.I loaded into the popup modal an existing php page. it asking for
email and there is a javascript validation for email ans comfirm email.now
what i want to do is to make the popup apear anytime the vaidation fail
u
Thanks for the assistance, guys. All is well now.
To answer your question as far as what is _wrong_ with your code -
AFAIK, you can't mix an object reference (variable) & a text string
within a single jQuery selector parameter. You have the right idea
though. Modifying what you had just a little will work:
var spName = $("option:selected"
Appears to work just fine in 1.2.6 (without having to convert to
string)
I'm happy once again :)
On May 22, 10:30 pm, Photic <[EMAIL PROTECTED]> wrote:
> Aah, functionality change. Bummer.
>
> On May 22, 9:28 pm, "Aaron Heimlich" <[EMAIL PROTECTED]> wrote:
>
>
>
> > $("#q").val("3"); <-- notice t
jQuery v1.2.6 is now official and release notes have been posted:
http://docs.jquery.com/Release:jQuery_1.2.6
The biggest changes are improvements in performance, especially event
handling, which is now 103% faster.
Also, the Dimensions plugin is now part of core. The remaining methods
of
Very cool. I have an assignment coming up that I believe I might be
able to use something like this for. Very slick, nice job Remy and
thanks for sharing Rey!
Matt
On Jun 3, 7:10 am, Rey Bango <[EMAIL PROTECTED]> wrote:
> Remy Sharp of jQuery for Designers has created a new screencast on how
> t
I just noticed that the page is now indeed updated
Looks like lots of good fixes in there
Looks cool. Great work.
Wish list: (Because I can't help myself)
How about shadows?
This script might be good for reference. http://www.netzgesta.de/corner/
Again, this is great. :) Thanks!
Glen
On Tue, Jun 3, 2008 at 10:05 AM, weepy <[EMAIL PROTECTED]> wrote:
>
> seems to be a problem with i
seems to be a problem with inline elements. not sure what the solution
is right now.
On Jun 3, 3:25 pm, Pyrolupus <[EMAIL PROTECTED]> wrote:
> Jonah,
>
> I'm not sure whether this is a settings issue or a version issue, but
> the demo page looks a little off on my Opera-9.27/WinXP:
>
> http://
> Not exactly what you're looking for, but may give you some ideas:
> http://ejohn.org/blog/javascript-pretty-date/
Yeah, that does look like it might be useful to deconstruct. Stevef_
on #jquery suggested this:
http://chandlerproject.org/Documentation/ScoobyJavaScriptLibraries
...but the down
On Mon, Jun 2, 2008 at 2:45 PM, Kandy I <[EMAIL PROTECTED]> wrote:
>
> Are there any plugins like on Apple's Pro site, with the sortable
> checkbox?
>
> http://www.apple.com/pro/profiles/
If you would like the specific functionality provided by Apple's site,
it would be trivial to implement yours
Anyone know of a way to tweak the behavior of "treeview"?
the demos are great - but I've put a little more 'info' at each node -
a table to be precise. and i want to allow a link to expand or
collapse the tree node - HOWEVER there are other links at each node
that should NOT expand collapse the n
Nope, nothing happening on dragging anything
On Jun 3, 5:35 pm, Arun Kumar <[EMAIL PROTECTED]> wrote:
> Not that,
>
> Drag that gadget
>
> DnD is not working...
>
> View source...
>
> On Jun 3, 5:24 pm, Sid <[EMAIL PROTECTED]> wrote:
>
> > Didnt work on my FF 2.0.0.14 WinXP Pro SP2 at 1024x76
dbroadley wrote:
Thanks for your help! The alert does come up.
I think to help we'd need more information. Can you post more of your
jQuery code, and maybe a little of the HTML you are using?
Here is the link info:
http://enure.net/dev/hide-all-except-one/
This is a link to someone else
My company is using it on our dev server, we'll most likely move it
out to production sometime this winter. So far, it has turned out to
be a great resource, especially for keeping all of our different apps
on the same page and staying up to date on the latest library releases
(in our case jQuery)
Perfect!! Just what I was looking for!
On Jun 2, 11:55 pm, tazman <[EMAIL PROTECTED]> wrote:
> Check this:http://ejohn.org/blog/javascript-pretty-date/
Great!
It could be even better if you can have some most popular plugins
included.
Thanks,
Jiming
On Jun 3, 2:55 am, Seth - TA <[EMAIL PROTECTED]> wrote:
> Scottus
>
> Nifty idea.
>
> Suggestion - Look to implement plugin options as well. Keeping track
> of versions is a benefit and the speed
For some reason code below doesn't work in IE. I don't think i found a
bug, maybe i'm doing something wrong?
$(document).scroll(function(){
alert('asd');
})
Jonah,
I'm not sure whether this is a settings issue or a version issue, but
the demo page looks a little off on my Opera-9.27/WinXP:
http://pyrolupus.com/img/opera-9.27_cornerz.png
(Note the white curve inside the green box for "Examples"--all the
green boxes on the page are l like that and th
Remy Sharp of jQuery for Designers has created a new screencast on how
to create a coda slider effect using jQuery:
http://snurl.com/2c9u2
Rey...
Thanks for your help! The alert does come up.
Here is the link info:
http://enure.net/dev/hide-all-except-one/
which I'm sorry I can't seem to make live!
Thanks
Diane
On Jun 3, 2:17 pm, Scott Sauyet <[EMAIL PROTECTED]> wrote:
> dbroadley wrote:
> > I have the html page copied from the page source
>On Jun 2, 4:28 pm, "Adam Weis" <[EMAIL PROTECTED]> wrote:
> $(document).ready(function(){
> var cnt = $('#errList li:visible').size();
> alert(cnt);
> });
>
> If someone knows a better way, I'd love to learn.
>
> -Adam
No need for a better way..this works great!! Awesome!!
Tha
Hi
I did a bit step forward...
calling
$.post(... , ..., ..., "xml") //specify xml as last param
with FF i get an Obj Document that i can manage directly using
$(xmlDoc)
so no try/catch block to check for DomParser o ActiveX conmponent.
Unfortunatly this is not working with IE even if using
dbroadley wrote:
I have the html page copied from the page source, the css style sheet
in a css file, the Jquery library (minimised ) and the documentation
in the js file.
That all sounds right. Can you give us a link to the page? If it's not
publicly accessible, then a quick check that jQu
Not exactly what you're looking for, but may give you some ideas:
http://ejohn.org/blog/javascript-pretty-date/
- Richard
On Mon, Jun 2, 2008 at 9:47 AM, owen <[EMAIL PROTECTED]> wrote:
>
> Does anyone know of a good plugin/function/library for adding up
> times? My primary requirement is to be
This is the first time I have tried to use Jquery, and I have copied
the above demo onto my computer and tried to set it up to work out how
to use it. It is supposed to hide all divs except one the same as a
tab. The demo can be found at the bottom of the FAQs section of Jquery
in the cook book.
Something like ... ?
var uniq_src = []
, singleton = function(){
if($.inArray(this.src, uniq_src) < 0){
uniq_src.push(this.src);
return true;
}else{
return false;
}
};
$('img').hide().filter(singleton).show();
... or even ... ?
var uniq_src = [];
You can use the navigationFilter-option for that.
The default is this.
navigationFilter: function() {
return this.href.toLowerCase() == location.href.toLowerCase();
}
It gets called for each anchor in the accordion-container.
Jörn
On Tue, Jun 3, 2008 at 8:51 AM, [EMAIL PROTECTED] <[EM
Could you post an example of your setup?
Jörn
On Tue, Jun 3, 2008 at 8:14 AM, jvip <[EMAIL PROTECTED]> wrote:
>
> Love the tree view plugin, but it does EVERYTHING for you - I want to
> customize some things.
> Specifically - adding an additional "hitarea" - or maybe simply
> knowing how to refe
> I've just released Cornerz 0.4
Very nice, Jonah!
Not that,
Drag that gadget
DnD is not working...
View source...
On Jun 3, 5:24 pm, Sid <[EMAIL PROTECTED]> wrote:
> Didnt work on my FF 2.0.0.14 WinXP Pro SP2 at 1024x768
> I clicked and small little windows with a blue minimize and a red
> close button opened. Inside the container, the de
Didnt work on my FF 2.0.0.14 WinXP Pro SP2 at 1024x768
I clicked and small little windows with a blue minimize and a red
close button opened. Inside the container, the default "error" page
opened.
On Jun 3, 12:53 pm, Arun Kumar <[EMAIL PROTECTED]>
wrote:
> Please visit the URL below and let me kn
Thanks both of you, it worked just fine :).
Mauricio.
On May 28, 2:52 pm, Ken Gregg <[EMAIL PROTECTED]> wrote:
> Use livequery. I attach it to each row in a flexigrid ike this:
>
> $('tbody tr').livequery(function() {
> $(this).contextMenu('ctxMenu', {
> bindings: {
> 'map': function
A little mistake, that http://sid-deswal.110mb.com
On Jun 3, 11:36 am, Sid <[EMAIL PROTECTED]> wrote:
> One way would be to restrict your display to 800x600, ie on bigger
> screens the entire thing just centers itself.
>
> Another way is what u want to do,resize the entire thing. Thats what
> im
Hi,
I'm new to jquery. I want to develop a upload progress bar using
jquery and PHP (i already did this
with xajax and php, but i want to use jquery this time). Does anyone
know why this doesnt work:
$(document).ready(function() {
function progress()
{
$.ajax({
Hi,
I'm using cluetip with a formular. I have cluetips on some of my input
fields. The Tip appears when hovering the input fields, but stays if i
clilck and want to enter something. How can i hide the tip again, if i
have clicked in the input field.
I have thought that i could catch the focus eve
Hi
I've just released Cornerz 0.4
http://groups.google.com/group/cornerz
Bullet Proof Corners plugin for jQuery using Canvas/VML
* Antialiased
* Fast - this pages renders in 200ms on my Vaio in Firefox and
there's quite a few corners!!
* Support for any size radius and border width
Can I use sortables for div's that contains iFrames (Shindig gadgets)?
that doesn't need refresh of iFrame?
Inside that iFrame, I have placed a alert, and each time I drag it, I
will get two alerts.
Is there any way of not using a proxy element?
Love the tree view plugin, but it does EVERYTHING for you - I want to
customize some things.
Specifically - adding an additional "hitarea" - or maybe simply
knowing how to refer to the correct class to wrap a link and have it
expand/collapse.
for instance - instead of having a 'word' at every nod
thanks, the code run perfect in firefox, but in IE 7 don't works
well... the divs is show and hide immediately... do you know why?
$(document).ready(function() {
$('div.menu-h2').hide();
//$('div.menu-h3').hide();
$('.menu-h1 ul li a').click(function() {
var t =
Please visit the URL below and let me know if there is any problem in
using the jQuery UI sortables.
http://tech-test.tutorialsforu.com/
Id like to run though all the elements of a particular class/name on a
page and unhide only the first of each that have a particular
attribute. for example imagine a table with many img tags, and we
want to show only one of each href.
var id;
var singleton = function() {if((this != id) &
great!!
thanks Sam
On May 30, 5:59 pm, "Sam Sherlock" <[EMAIL PROTECTED]> wrote:
> not my plugin but Luke Lutman's
>
> sounds like you need to add to your stylesheet
> .flash-replaced .alt {
> display:block;
> height:0pt;
> overflow:hidden;
> position:absolute;
> width:0pt;
>
> }
>
> for more inf
Hi Aaron,
it's really better to use CSS. Use percents for layout and you have
exactly what you need. You can then use the max-width property to
prevent spreading the page layout in an extreme resolution scenarios.
There's a hack that makes it work even in the prehistoric IE6 browser:
http://www.c
Hallo,
I'm used to check the broser version in my callback function (when
managing the xml from the response), something like:
try{
// for Ie
xmlDoc=new ActiveXObject("Microsoft.XMLDOM");
}catch{
//for FF
xmlDOc=DomParser()
(code is not complete :))
is there any way to make this transpa
One way would be to restrict your display to 800x600, ie on bigger
screens the entire thing just centers itself.
Another way is what u want to do,resize the entire thing. Thats what
im doing with my webpage at http://sid-deswa.110mb.com
I use JS to calculate the appropriate length and width, and
Check this:
http://ejohn.org/blog/javascript-pretty-date/
Hello,
I really enjoy using treeview, I've implemented it in an
administration panel and everything is amazingly fast and working as
expected in IE7. It's a very large sitemap, the page with not much
else on it is 250k of html, and it's using a minified jQuery 1.2.3 and
a packed Treeview 1.4.
Fi
It is not working for me in the case of load() function. I have to try
it once again.
On May 29, 3:54 pm, "Karl Rudd" <[EMAIL PROTECTED]> wrote:
> $.load() using $.ajax() at it's core so yes.
>
> It's a really good idea to check the documentation and the source code
> when you have questions like
I understand that |setting the navigation option to will identify the
active element through location.hash.
Isn't there any other way of specifiying the active element, perhaps by
means of an attribute such as id=active.
The reason is that, in our case, the Accordion menu list out a series of
Is there any solution using jquery for this problem?
This is better done on the server side with a scripting language, or
with basic javascript - the following page should help:
http://www.w3schools.com/jsref/jsref_obj_date.asp
On Jun 3, 6:04 pm, hubbs <[EMAIL PROTECTED]> wrote:
> I am wondering if jQuery has any solutions to calculate the time si
HTML & CSS. He is right. Look here:
http://www.w3.org/Style/Examples/007/figures.html
Many commercial pages use jQuery. Can someone post a list?
cheers
tlz
On Jun 3, 5:16 am, RobG <[EMAIL PROTECTED]> wrote:
> On Jun 2, 9:18 am, Aaron <[EMAIL PROTECTED]> wrote:
>
> > ok I am currently working
Just incase this hasn't been posted around yet, I stumbled across this last
nite (and I hope the author doesnt mind cuase I think this is great!)
http://xtnd.us/dreamweaver/jquery
Big thanks to Chris Charlton! _/-0_
89 matches
Mail list logo