[jQuery] Re: JQUERY Pagination

2009-05-19 Thread Jim D
I would check out DataTables. It looks like it would easily be able to do what you're talking about and much more. http://www.sprymedia.co.uk/article/DataTables -Jim On May 18, 11:59 am, bharani kumar bharanikumariyer...@gmail.com wrote: Hi all, Please refer few jquery pagination plugins ,

[jQuery] Re: jqModal - Deactivate a register trigger

2009-05-19 Thread Jim D
I don't believe there's a removeTrigger sort of function for jqModal. The only thing I can think of to do would be to bind a click event to the element you want to trigger the modal instead of using the jqmAddTrigger() method. So instead of:

[jQuery] Re: How to check if jquery is working?

2009-05-16 Thread Jim D
You can also check to see if $ is a function. If the jQuery script loaded properly, that should return true On May 15, 2:16 pm, James james.gp@gmail.com wrote: Try using tools like the Web Development toolbar add-on for Firefox to debug. Under Information View Javascript, you can view

[jQuery] Re: jqModal question in regard to IE6

2009-05-05 Thread Jim D
Rick, Could you post an example link so I could get a better idea of what you're talking about? I've dealt with jqModal issues in IE6 before so I may be able to help you out, but I would need to see the page where all this is happening. On May 4, 10:14 am, Rick ric...@gmail.com wrote: Man,

[jQuery] Re: Protect page which loaded by $.ajax

2009-04-24 Thread Jim D
You can also check the HTTP_X_REQUESTED_WITH server variable. If the page is requested via $.ajax then this will be set to XMLHttpRequest but if it is requested straight through the browser, then it will not exist. On 23 апр, 21:51, donb falconwatc...@comcast.net wrote: If you are not

[jQuery] Re: Get specific content (from div, p) from $.ajax

2009-04-23 Thread Jim D
Based on the example you have here, it seems like having your php file return a JSON object may suit your needs a little better than returning an entire page. However, if you wanted to get the data in the way you're talking about, set the 'dataType' parameter to 'html' in your $.ajax function,

[jQuery] Re: Problem: Thickbox context bigger then browser size - no scroll bars.

2009-04-10 Thread Jim D
stuck with this, too! 2009/4/9 Jim D jwiz...@gmail.com Hi. How do you deal when thickbox is displaying itself bigger then browser size and it does not show scroll bars, so there is no way of getting to the last sentences display in Thickbox?

[jQuery] Problem: Thickbox context bigger then browser size - no scroll bars.

2009-04-09 Thread Jim D
Hi. How do you deal when thickbox is displaying itself bigger then browser size and it does not show scroll bars, so there is no way of getting to the last sentences display in Thickbox?

[jQuery] DOM Rendering is not finished before ThickBox tried to display = Grey Screen

2009-04-03 Thread Jim D
Hi. I have a problem of getting a grey screen instead of grey screen with JQuery ThickBox on top of that. I need to open ThickBox on page load. It seems that sometimes! DOM is not finished when ThickBox is trying to modify it. Here is a code I have at the end of my .jsp file (showWarning() just

[jQuery] Re: Jquery.js include multiple times header / footer / etc.

2009-02-03 Thread Jim D
You could check whether or not $ is a function. If jQuery has been included, typeof($) should return the string function otherwise it will return undefined On Feb 2, 11:32 am, Sébastien Richer sebastienric...@gmail.com wrote: Hi, I tried to search around for this but have'nt had any luck, so

[jQuery] Re: Opacity for a menu background, but not for the element inside

2008-12-12 Thread Jim D
You can use the CSS 'opacity' property. It accepts a value between 0.0 and 1.0. For example, if you wanted to set the opacity of an element to 40%, you would use: opacity: 0.4; However, in true MS style, you have to do something different to get it to work in IE. Internet Explorer accepts

[jQuery] Re: Submit a form automatically

2008-12-12 Thread Jim D
Do you have an example of the code you're using to load the form? On Dec 12, 11:02 am, Adam apcau...@gmail.com wrote: I have a dynamically created form that I'd like to submit automatically after it loads.  It doesn't look like forms have an onload event.  I would use the window onload, but

[jQuery] Re: Trouble with adding 'addClass' to an existing piece of Jquery code

2008-12-11 Thread Jim D
Oh, one more thing I forgot, change the .menu-on declaration to .menu- on a

[jQuery] Fade() Function not Working on Flash Objects in Firefox

2008-08-26 Thread Jim D
Hello all, I have a page with an iframe inside of a div tag. In the iframe, I have a page with several flash objects. Each of the flash objects is a button that, when clicked, will load another page into the iframe. There is also functionality to show and hide the div containing the iframe.

[jQuery] Re: Fade() Function not Working on Flash Objects in Firefox

2008-08-26 Thread Jim D
Correction: I am having the same problem in Safari