[jQuery] Scrolling Table sets scroll position in overfloe:hidden div - Scroll is lagging

2008-07-10 Thread Wes Duff
Hello, I have a div with a table inside. The div is set to a width and an overflow of auto. Scroll works great. The problem is, I have set an event on the div to check when it is scrolling. I take the scrollTop() function and assign it to the scrollTop() of another div with a css property of overf

[jQuery] Re: JSONP - not using PHP - having problems

2008-07-09 Thread Wes Duff
); // displays "object" } Make sure you have "?yourFunctionName=? where yourFunctionName is the name of the sending html files javascript function name. That was my problem. Thanks On Jul 9, 3:48 pm, Wes Duff <[EMAIL PROTECTED]> wrote: > Hello, > I have read over al

[jQuery] JSONP - not using PHP - having problems

2008-07-09 Thread Wes Duff
Hello, I have read over almost every post in this group and still cannot figure this out. I am sure it has to do with the way I am creating my JSON object. Here is the file I am broadcasting the file from. http://www.simplifieddesign.biz/jsonTest.html The source does not include any or just th

[jQuery] Re: Selector Madness! How to Select all the Text on a Page?

2008-05-02 Thread Wes Duff
I am having the same kind of problem. I am trying to select all the text inside a content div that has many , , , ect.. all located nested inside the div and I do not want any other text except the text inside the content div. I tried $("*").not("div#printercontrol, div#footer").annimate({fo

[jQuery] Re: Selector Madness! How to Select all the Text on a Page?

2008-05-02 Thread Wes Duff
Ok Im stupid Just use $("div#primarycontentcontainer").animate({fontSize: '+=' + sliderStop}); On May 2, 9:00 am, Joe <[EMAIL PROTECTED]> wrote: > Ariel, > > You are correct. Attempting suggestions now. > > Thanks guys! > > Joe > > On May 2, 8:32 am, Ariel Flesler <[EMAIL PROTECTED]> wrote: > >

[jQuery] Very Challenging (Drop-Drag) Text Resize Scroller

2008-05-01 Thread Wes Duff
Hello everyone, I am in the process of creating a Text Resize Scroller for my employer. I have the skin created which consists of a background image that looks like a stretched out Less than symbol “<” with a vertical rectangular handle to scroll left and right to make the text grow Or shrink. He

[jQuery] Re: Hide/Close div when clicked outside of it.

2008-05-01 Thread Wes Duff
1, 5:08 am, Aleksandr <[EMAIL PROTECTED]> wrote: > I still have the same issue. > Yes, I have wrapper div how it can be solved in this case? > > Thanks > > On Apr 30, 7:05 pm, Wes Duff <[EMAIL PROTECTED]> wrote: > > > Off the top of my head --- Try something like

[jQuery] Re: slideUp slideDown and mouseover mouseout

2008-04-30 Thread Wes Duff
Hello, If you want the div to scroll up when you move the mouse over a sertain div you could use the hover() function but here is a quick example of mouse events $(function(){ //first hide the button div $('div#buttonDiv').hide(); //here set a hover to show roll on and roll off an

[jQuery] Re: count lis within a ul.

2008-04-30 Thread Wes Duff
I dont know if this is right or not but every time you use a function you should end it with () and (param1, param2, paremEnd) if you have parameters. So shouldnt it be $("div.belt > ul > li").length(); On Apr 30, 7:04 pm, Dave Methvin <[EMAIL PROTECTED]> wrote: > > right now i am using this:

[jQuery] Re: :contains( I WANT TO USE A VALUE HERE NOT A STRING ) well the value is a string

2008-04-30 Thread Wes Duff
If you want to look for the text you've > > assigned to the _variable_ hidden_div you just need to go: > > > $('ul#list_container a:contains(' + hidden_div' + )') > > > That may or may not be the best way of doing it, but I think it is

[jQuery] :contains( I WANT TO USE A VALUE HERE NOT A STRING ) well the value is a string

2008-04-30 Thread Wes Duff
Does anyone know a work around or how to add a value to :contains. Here is my code I am working with $('.printer_element > h2').each(function (i) { if($(this).nextAll().size() > 0) { //do nothing } else { //Here we hi

[jQuery] Re: Hide/Close div when clicked outside of it.

2008-04-30 Thread Wes Duff
Off the top of my head --- Try something like this $('div#mydiv').clcik(function(){$('div#mydiv').show();}); //click to show div $('div:not(#mydiv)').click(function(){$('div#mydiv').hide()}); click anywhere else to hide div ## Problem just thought of If you are using a wrapper div then you will h

[jQuery] Re: filter not working when expression contains spaces

2007-09-27 Thread duff
children > elements. > > On Sep 26, 5:21 pm, duff <[EMAIL PROTECTED]> wrote: > > > Hi all, > > > I have started to use Jquery a couple month ago, and i really love the > > framework. > > > I am currently working on an event delegation plugin, atta

[jQuery] filter not working when expression contains spaces

2007-09-26 Thread duff
Hi all, I have started to use Jquery a couple month ago, and i really love the framework. I am currently working on an event delegation plugin, attaching generic event to the document and applying filters to the target element to determine if an event should be applied. I have however noticed s

[jQuery] filter bug when expression contains spaces

2007-09-26 Thread duff
Hi all, I have started to use Jquery a couple month ago, and i really love the framework. I am currently working on an event delegation plugin, attaching generic event to the document and applying filters to the target element to determine if an event should be applied. I have however noticed s