[jQuery] jQuery Tabs -- Long content in hidden tabs

2009-11-09 Thread ripcurlksm
I am using jQuery tabs and when I have very long content within the tabs, my browsers scroll bar reflects the content in the tab with the most content. Example, Tab 1 Tab 3 has a very long scroll bar, even though it has no content (because of Tab 2) and you can scroll down through the empty

[jQuery] Combining old Tabs design with new Progress Bar

2009-10-01 Thread ripcurlksm
I love and use the old jQuery Tabs on jquery 1.2.3: [url]http://psylicyde.com/misc/tabs-test/[/url] I want to integrate the new Progress Bar UI feature on jQuery 1.3.2 and jQuery UI 1.7.2 : [url]http://psylicyde.com/misc/progress-bar/[/url] When I combine then however, the new tab style of

[jQuery] I think I'm using the wrong syntax for radio button name

2009-09-30 Thread ripcurlksm
I have three radio buttons, and when a certain radio is selected I want to show a series of checkboxes. If the other two radio buttons are selected, I want to hide the checkboxes. I *think* the problem is that I am using the wrong syntax to call the click() function on the radio name attribute.

[jQuery] jQuery Validate -- how to require series of checkboxes when named as array[]

2009-09-23 Thread ripcurlksm
I have a working example of jQuery validate working in the link below. The newsletter checkbox is required and working. However, the colors checkboxes are all named as an array ( ex: name=color[] ), and so the problem lies in the validation code, where it uses the name of the element to require

[jQuery] jQuery Validate -- how to require series of checkboxes when named as array[]

2009-09-23 Thread ripcurlksm
I have a working example of jQuery validate working in the link below. The newsletter checkbox is required and working. However, the colors checkboxes are all named as an array ( ex: name=color[] ), and so the problem lies in the validation code, where it uses the name of the element to require

[jQuery] validate - if other checked -- require input box

2009-09-21 Thread ripcurlksm
I have a How did you hear about us? with a series of checkboxes that is working great, however there is an option for Other, where they can fill out their answer. I want to modify the script so if the checkbox for Other is selected, they are required to fill in the input box. I have this

[jQuery] Re: Autocomplete: implement result() to link a selection

2009-09-09 Thread ripcurlksm
Can anyone offer any suggestion to allow for me to get this to work? If I type something like Green and click on the suggestion, I want it to go to a page like page.php?id=1. If I type something like Red and click on the suggestion, I want it to go to a page like page.php?id=2. %-| --

[jQuery] Autocomplete: implement result() to link a selection

2009-09-03 Thread ripcurlksm
I have autocomplete working for a list of colors(red, green, blue, etc). I created an array of $id's to match each color. For example if someone types and selects red, I want it to go to a page like mypage.php?id=1. How can I (1) parse the ids in the array and (2) implement the result()

[jQuery] count checkboxes selected

2009-08-07 Thread ripcurlksm
I have a script where a user can select any 10 out of 20 CD's. I am using the jQuery Field Plug-in to limit the users selections to 10. My question is, how can I display the number of checkboxes selected, and remaining? I want to say: You have 3 CD's selected. You have 7 selections left. Here

[jQuery] Re: count checkboxes selected

2009-08-07 Thread ripcurlksm
I dont want to use an alert, I want to use ajax or some method to show how many checkboxes are selected in REAL TIME. So when you select one checkbox it says on the page: You have 1 CD's selected. You have 9 selections left. When you select a second checkbox it says on the page: You have 2

[jQuery] Re: count checkboxes selected

2009-08-07 Thread ripcurlksm
Thanks James, that was really helpful -- I've placed the code, but I can not get it to populate the div. Did I place it in the correct area? http://psylicyde.com/misc/checkbox -- View this message in context: http://www.nabble.com/count-checkboxes-selected-tp24871849s27240p24872962.html Sent

[jQuery] jQuery toggle question

2009-08-05 Thread ripcurlksm
For once, I have a script fully working... I have four tabs that pull down when clicked. If a tab is open, and you click another tab, the opened tab closes first, then the selected tab opens. Here is a working example (Open Tab1, then click Tab2 and note how it closes quickly, i want Tab1 to

[jQuery] Error: Load a jQuery Flot chart inside a jQuery tab

2009-06-24 Thread ripcurlksm
I am trying to load a jquery chart (Flot) inside the second tab of jQuery tabs. It works fine on the opening tab, but if i bury the chart in any tab, it breaks and throws the js error Invalid dimensions for plot... I looked around and the problem might be that because the second tab is hidden

[jQuery] Re: Error: Load a jQuery Flot chart inside a jQuery tab

2009-06-24 Thread ripcurlksm
fixed it... i changed the css to .tabs-hide { /*display: none;*/ position: absolute; left: -1px; } ripcurlksm wrote: I am trying to load a jquery chart (Flot) inside

[jQuery] jQuery AutoComplete - how to post a variable if option is selected?

2009-02-03 Thread ripcurlksm
I am using a jQuery AutoComplete plugin which fills in text as you type. I need to find a way when the page is submitted (submit.php) to determine if the user choose a company from the list, or if they typed in their own unique company. If an option is selected, can i have jQuery post an extra

[jQuery] Re: In a pickle -- JavaScript Pagination vs. PHP/MySQL Pagination

2009-01-08 Thread ripcurlksm
. JK -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of ripcurlksm Sent: Tuesday, January 06, 2009 6:48 PM To: jquery-en@googlegroups.com Subject: [jQuery] In a pickle -- JavaScript Pagination vs. PHP/MySQL Pagination --- here

[jQuery] base tag breaks jquery pagination

2009-01-06 Thread ripcurlksm
I have jQuery pagination working in my search results, however, I hit a snag when trying to view the next page's results, because of my base url integrating this into my page and the pagination is showing up, but the links are broken because I am using a base tag. For example: Normally the

[jQuery] In a pickle -- JavaScript Pagination vs. PHP/MySQL Pagination

2009-01-06 Thread ripcurlksm
--- here is a picture of me I have a jQuery sortable table with jQuery pagination, which is being fed from PHP/MySQL-- and now that I have it setup, I am in a pickle. It appears I can only have cake or eat it. I want a table that loads fast from MySQL, that I can paginate (for performance) AND

[jQuery] jQuery Pagination and MySQL $limit, $offset

2009-01-03 Thread ripcurlksm
I am trying to use the jQuery pagination plugin with my PHP/MySQL website -- It appears I have to either use Ajax or use PHP to write the jQuery pagintion header so I can control the $offset and $limit, in order to control the pagination -- What is the best way to combine javascript, PHP and

[jQuery] Re: TableSorter Pagination -- Breaks when wrapped in table [example]

2008-12-30 Thread ripcurlksm
Why would my script break when I wrap a table around it? ripcurlksm wrote: still looking for a solution... ripcurlksm wrote: I have a working version of the jQuery TableSorter but when I wrap the div in a table, the pagination stops working. This appears to be a CSS issue when

[jQuery] Re: TableSorter Pagination -- Breaks when wrapped in table [example]

2008-12-22 Thread ripcurlksm
still looking for a solution... ripcurlksm wrote: I have a working version of the jQuery TableSorter but when I wrap the div in a table, the pagination stops working. This appears to be a CSS issue when the table is wrapped? Here is the broken pagination, with it wrapped in a table

[jQuery] Re: jQuery Tabs -- Are disjointed tabs possible?.

2008-12-10 Thread ripcurlksm
Hey guys, i dont know what happened but I posted a picture/mock of what I wanted and now the photo is gone.. ?? Anyway its solved-- I wanted to have one tab on the left, then a series of tabs on the same line, but on the right side... someone suggested floating the tabs I wanted on the right

[jQuery] jQuery Tabs -- Are disjointed tabs possible?.

2008-12-09 Thread ripcurlksm
-- View this message in context: http://www.nabble.com/jQuery-TabsAre-disjointed-tabs-possible-.-tp20924475s27240p20924475.html Sent from the jQuery General Discussion mailing list archive at Nabble.com.

[jQuery] jQuery Tabs -- Are disjointed tabs possible?

2008-12-09 Thread ripcurlksm
Is this possible with jQuery tabs? To seperate certain tabs and push them to the right? http://www.nabble.com/file/p20924502/Untitled-1.jpg -- View this message in context: http://www.nabble.com/jQuery-TabsAre-disjointed-tabs-possible--tp20924502s27240p20924502.html Sent from the jQuery

[jQuery] CSS bug when combining Tabs and TableSorter

2008-11-29 Thread ripcurlksm
I've got a weird bug in my CSS with using (jQuery Tabs and jQuery TableSorter) where every time I have a link, or span on the page, it prints a background image that is used for the jQuery tabs. Here is what the problem looks like: http://www.nabble.com/file/p20745016/Untitled-1.gif Here is a

[jQuery] Re: CSS bug when combining Tabs and TableSorter

2008-11-29 Thread ripcurlksm
thanks Ill give it a shot ripcurlksm wrote: I've got a weird bug in my CSS with using (jQuery Tabs and jQuery TableSorter) where every time I have a link, or span on the page, it prints a background image that is used for the jQuery tabs. Here is what the problem looks like: http

[jQuery] jQuery Countdown

2008-11-28 Thread ripcurlksm
I am trying to get the countdown to work from this example (http://keith-wood.name/countdown.html), and I cant get it working.. What am I doing wrong? html head script type=text/javascript src=http://code.jquery.com/jquery-latest.pack.js;/script link rel=stylesheet type=text/css

[jQuery] TableSorter Pagination -- Breaks when wrapped in table [example]

2008-11-17 Thread ripcurlksm
I have a working version of the jQuery TableSorter but when I wrap the div in a table, the pagination stops working. This appears to be a CSS issue when the table is wrapped? Here is the broken pagination, with it wrapped in a table (try to click the next page button, its broke!):

[jQuery] jQuery Tabs: CSS Bug

2008-11-12 Thread ripcurlksm
I am having problems with the gray line that is supposed to appear at the bottom of the tabs. Instead it is appearing at the top of the tabs as shown here: http://www.nabble.com/file/p20471209/tabs-bug.jpg I have a copy of this displaying correctly, when I add it to my site it gets tweaked.

[jQuery] Re: TableSorter Pagination: Move pagination to top

2008-11-10 Thread ripcurlksm
no I am not using drupal, its a page I made using PHP and MySQL bharanikumariyerphp wrote: hi , r u working in Drupal On Mon, Nov 10, 2008 at 1:20 PM, ripcurlksm [EMAIL PROTECTED] wrote: ... still working on this.. it appears that the pagination div is relatively positioned, so

[jQuery] Re: TableSorter Pagination: Move pagination to top

2008-11-09 Thread ripcurlksm
... still working on this.. it appears that the pagination div is relatively positioned, so that if you have 10 results set to show, it will assume the vertical height that 10 rows would take up.. as a result, if your last page only shows 5 rows remaining, it will still assume that 10 rows are

[jQuery] jQuery vs. jQuery UI

2008-11-05 Thread ripcurlksm
What is the difference between the jQuery packed version and the UI packed version? For example, I want jQuery Tabs, and jQuery Table Sort to run on the same page -- do I need to have both the jQuery and jQuery UI packed version, along with the plugin scripts for Tabs and Table Sort? It gets

[jQuery] TableSorter Pagination: Move pagination to top

2008-11-05 Thread ripcurlksm
Is there any way i can move the pagination div to the top of the table sort-- because the last page of the table sort always has a white gap between the last row and the pagination buttons. Two ways to solve this would be to either move the pagination to the top or fix the pagination div so

[jQuery] Re: ThickBox Bug - Back Button in IE

2008-10-31 Thread ripcurlksm
OscarGodson wrote: ripcurlksm wrote: I’ve had some users that accidentally hit back on their browsers when trying to close the thickbox (instead of hitting the Close Button)... is there a way to make it so the user can click back on their browser and it’ll close the thickbox

[jQuery] Re: ThickBox Bug - Back Button in IE

2008-10-31 Thread ripcurlksm
? ripcurlksm wrote: OscarGodson wrote: ripcurlksm wrote: I’ve had some users that accidentally hit back on their browsers when trying to close the thickbox (instead of hitting the Close Button)... is there a way to make it so the user can click back on their browser and it’ll close

[jQuery] ThickBox Bug - Back Button in IE

2008-10-30 Thread ripcurlksm
I’ve had some users that accidentally hit back on their browsers when trying to close the thickbox (instead of hitting the Close Button)... is there a way to make it so the user can click back on their browser and it’ll close the thickbox, instead of the browser going back to the previous page

[jQuery] Re: Validate with bassistance local bug

2008-09-22 Thread ripcurlksm
20, 2008 at 2:23 AM,ripcurlksm[EMAIL PROTECTED] wrote: On this demo: http://jquery.bassistance.de/validate/demo/milk/ I cant get the email validation to work on the second try locally. The above link works fine. If you submit an invalid email address it asks you to reenter it. Great. So I

[jQuery] Validate with bassistance local bug

2008-09-19 Thread ripcurlksm
On this demo: http://jquery.bassistance.de/validate/demo/milk/ I cant get the email validation to work on the second try locally. The above link works fine. If you submit an invalid email address it asks you to reenter it. Great. So I try to move it locally. I downloaded jQuery and the