Re: [jQuery] Re: Autocomplete incompatible with certain struts-tiles-javascript apps

2010-01-15 Thread Jon Banner
have a go with http://docs.jquery.com/Core/jQuery.noConflict 2010/1/15 j...@verax joti.bis...@gmail.com I found the problem. Its the $ sign ! The $ sign has a very special meaning in the jQuery framework. So if it is used in any other Javascript that doesnt use jQuery, it will be

Re: [jQuery] Is treeview plugin using some other plugin for cookie persistence

2010-01-14 Thread Jon Banner
the cookie plugin in the download not working for you? 2010/1/12 epitka exptrade2...@yahoo.com If so, which plugin is it using? I cannot find anything in docs.

Re: [jQuery] How to apply limits to an animation

2010-01-11 Thread Jon Banner
have a look at the jCarousel plugin - i think that should do what you need. http://sorgalla.com/jcarousel/ Jon 2010/1/9 JQNovice i...@chamonixmountainguides.com I am very new to JQuery but so far very happy with ease of use. I have created a series of thumbnails that slide as the left,

Re: [jQuery] Can we use jquery for paging and sorting in asp.net 2.0 ?????

2010-01-08 Thread Jon Banner
take a look at jqGrid http://www.trirand.com/blog/ I rarely use asp these days but i think there is a component available. good luck Jon 2010/1/8 Jackson...!!! jacksoncouti...@gmail.com Hello All, Using jQuery can we include asp.net 2.0 gridview, paging sorting and in-place editing.

[jQuery] Re: Social media plugin

2009-10-22 Thread Jon Banner
yes. http://github.com/kswedberg/jquery-socialize 2009/10/22 Ricardo ricardo.soaresdel...@gmail.com I've visited this site(http://www.intomobile.com/2009/10/09/hands-on-

[jQuery] Re: In a table, I add a new row(tr string append to the table), It can not action some even.

2009-10-21 Thread Jon Banner
Give live ago instead of click. something like: $(document).ready(function(){ $(.up,.down).live(click,function(){ var row = $(this).parents(tr:first); if ($(this).is(.up)) { row.insertBefore(row.prev()); } else { row.insertAfter(row.next()); } });

[jQuery] Re: How to access iframe window?

2009-10-13 Thread Jon Banner
You can chain... $(iframe)[i].contents().find('#selector') Jon 2009/10/13 Christophe christophe.humb...@gmail.com: How can I access an iframe window using jQuery? The only iframe related stuff I have found is contents(), which allows me to access the DOM in the iframe. For now, I am

[jQuery] Re: How to access iframe window?

2009-10-13 Thread Jon Banner
. Christophe On Oct 13, 6:02 pm, Jon Banner banali...@googlemail.com wrote: You can chain... $(iframe)[i].contents().find('#selector') Jon 2009/10/13 Christophe christophe.humb...@gmail.com: How can I access an iframe window using jQuery? The only iframe related stuff I have found is contents

[jQuery] Re: Jcarousel Add Link

2009-10-12 Thread Jon Banner
add links to your item list something like: {url: http://static.flickr.com/66/199481236_dc98b5abb3_s.jpg;, title: Flower1, link:http://wherever.com/}, and then update the helper function to something like: function mycarousel_getItemHTML(item) { return 'a href='+item.link+'img src=' +

[jQuery] Re: jQuery Right click menu

2009-10-07 Thread Jon Banner
you must have asked your question outside of normal support hours. have you looked into this plugin? http://abeautifulsite.net/notebook_files/80/demo/jqueryContextMenu.html 2009/10/7 donovan78 djalmabri...@gmail.com Hi , please whymy question is not answer ? something is

[jQuery] Re: Notre Dame Inspired Jquery -- Exists?

2009-10-06 Thread Jon Banner
one of the carousel plugins could do it for you. http://sorgalla.com/jcarousel/ http://www.gmarwaha.com/jquery/jcarousellite/ depending on your project specific needs. best. Jon 2009/10/6 Kevin Jones kevin...@gmail.com bump On Oct 1, 10:43 am, Kevin Jones kevin...@gmail.com wrote:

[jQuery] Re: Callback Function had a look but don't get it

2009-10-01 Thread Jon Banner
the link should have it's normal state and actions when you don't return false, as in the example code you provided. If you want to add a call back to fire after the fade out: $(function() { // document is ready for load $('a').click(function() {

[jQuery] Re: compare variables

2009-10-01 Thread Jon Banner
make friends with regular expressions. http://en.wikipedia.org/wiki/Regular_expression 2009/9/30 Poloman bigtrouble1...@gmail.com I have varA = com and varB=com55 or ton2 or son1.9 or whatever values... I want to do a comparison if the prefix of varB = com, which is varA, then do

[jQuery] Re: Tablesorter problems

2009-10-01 Thread Jon Banner
Hi Mike, it looks as if you have copied and pasted some illegal characters in to your demo page. Try removing these and see if that helps. Best, Jon 2009/10/1 Mike michael.dimm...@virgin.net Is there no one that can help? On Sep 30, 4:26 pm, Mike michael.dimm...@virgin.net wrote: Hi I

[jQuery] Re: Problem with fade-effects and IE8

2009-10-01 Thread Jon Banner
What version of jQuery are you using? I have not had problems with IE8 using version 1.3.2, and i've just checked some sites that i've previously worked on using 1.2.6, and they don't seem to have any problems with fade in or fade out. Maybe you have a beta version of IE8? Jon 2009/9/30

[jQuery] Re: reservation booking system

2009-09-30 Thread Jon Banner
have you checked out the UI? http://jqueryui.com/ rgds. Jon 2009/9/30 Eesti Mate e...@t35t.in-berlin.de Hello List, I'm looking for some modules to realize a reservation and booking system (jQueryDjango), preferably with a nice calendar interface. I did some research today, but didn't

[jQuery] Re: jCarouselLite - set to scroll if...

2009-09-30 Thread Jon Banner
No idea if this will work for you. get the height of the content you wish to scroll. http://docs.jquery.com/CSS/height if its greater than the height of your carousel item, add the auto call to the plugin... presume that you have seen all this http://www.gmarwaha.com/jquery/jcarousellite/

[jQuery] Re: How do I stop my div from sliding?

2009-09-29 Thread Jon Banner
as soon as i scroll your demo, the div disappears off the top of the page in firefox and IE7 From the behaviour you describe i think this might be useful to you http://www.cssplay.co.uk/layouts/fixed.html best. Jon 2009/9/29 jpearson311 jpearson...@hotmail.com Hi all. JQuery noob here.

[jQuery] Re: Changing a class name without clicking

2009-09-24 Thread Jon Banner
you'll need an event to attach your function call to, whether that's document ready or click or... you might also find toggleClass http://docs.jquery.com/Attributesto be useful here Jon 2009/9/24 Lleoun adoming...@vivocom.es Hi all, I have the following: div class=unselected

[jQuery] Re: How can i add Buttons?

2009-09-24 Thread Jon Banner
jCarousel ?? did you try this? http://sorgalla.com/projects/jcarousel/examples/static_controls.html 2009/9/21 Pesimist pckopat.fene...@gmail.com hello everyone. i have a problem. i wanna add left and right buttons but i couldn't i have tried long time so really i need. i am looking for

[jQuery] Re: More Jquery calls on a page

2009-09-23 Thread Jon Banner
You should be able to do this without problem. http://www.learningjquery.com/2006/09/multiple-document-ready 2009/9/23 Topflysecurity konnektgra...@gmail.com hi. i always seem to have problems with this so i thought i would join here and ask. i cant use two different jQuery calls on the

[jQuery] Re: chaining animations and pausing for each step

2009-09-11 Thread Jon Banner
Have you had a go with queue? http://docs.jquery.com/Effects/queue Rgds. Jon 2009/9/10 D A dali...@gmail.com In pseudo code, here's what I'm trying to do with some text: shrinkText.changeText.EnlargeText. The jQuery I'm using for this: $('span#calendarNumber').animate({

[jQuery] Re: How to access variables in page loaded with $.load?

2009-09-09 Thread Jon Banner
I'm not really sure what you're trying to do here... if you want a JS variable to persist between pages you'll have to pass it in a cookie, or as part of a query string and then retrieve it on the load of the second page. It's probably easier to do this server-side. Jon 2009/9/9 Matt Wilson

[jQuery] Re: jCarousellite: is it possible to remember a slide's position?

2009-08-21 Thread Jon Banner
you could try using the afterEnd callback function to capture the position of the carousel and store this in a cookie, and then pass this variable back in as the start position for the carousel. 2009/8/21 noahT nippon...@gmail.com Today a client asked me if it's possible to remember a

[jQuery] Re: Checkbox perpetually marked as checked

2009-08-20 Thread Jon Banner
double == in your if statements might do the job. 2009/8/19 Nick Moy nick@gmail.com When the if else statements are removed, they are not perpetually checked. On Aug 19, 4:34 pm, labbit nick@gmail.com wrote: Hello, I'm trying to write an if else statement in javascript so

[jQuery] Re: How to hide pop is blur

2009-08-13 Thread Jon Banner
$('#show').click(function(){ $('#popup').fadeIn(slow, function(){ $(other things).click(function(){ $('#popup, #show').hide(); }); }); }); 2009/8/13 David .Wu chan1...@gmail.com There is a button control a div show or not, I want when you click other things then the

[jQuery] Re: jCarousel External Control as Pagination

2009-08-05 Thread Jon Banner
without seeing your code it's a bit of guess work... you could try this use the callback function initCallback assuming that you are showing 5 items and your external control has id = btn-show-next, attaching an event something along these lines ought to help you.

[jQuery] Re: jcarousel - malware-adware?

2009-07-20 Thread Jon Banner
set your dimensions as in the stylesheet included in the documentation. http://sorgalla.com/projects/jcarousel/lib/jquery.jcarousel.css 2009/7/19 icpep icpep@gmail.com MorningZ wrote: It's called a false positive... where Spybot *thinks* it's something malicious, but it isn't... if

[jQuery] Re: TreeView Problems

2009-07-07 Thread Jon Banner
i had a similar problem this morning. I updated the call to the write cookie to include a path (i was getting a cookie written for each page in the app) line 172 in the uncompressed plugin. $.cookie(settings.cookieId, data.join(), { path: '/' } ); Jon 2009/7/6 Keith keithhen...@gmail.com