[jQuery] Re: Strip element from inside object

2008-11-21 Thread briandichiara
Ok, I think I got it: var the_val = ob.clone().find("span").remove(); alert(the_val.html()); On Nov 22, 12:12 am, briandichiara <[EMAIL PROTECTED]> wrote: > I'm returning a jQuery object that has class="type"> inside as .html(). > > So how do i get rid of the span class="type" from the object

[jQuery] Strip element from inside object

2008-11-21 Thread briandichiara
I'm returning a jQuery object that has inside as .html(). So how do i get rid of the span class="type" from the object and then place the rest of the HTML into another element? Example: function otherFunction(){ doFunction($(myObj)); } function doFunction(ob){ alert(ob.html()); //

[jQuery] How to memorize a "class" change?

2008-11-21 Thread lukas
I am removing&adding a class to a DIV. What is the best way to memorize this change for the application before it is resetting itself while going through the loop again? Thank you!

[jQuery] Re: event delegation - great, but how does one trigger the handlers through code?

2008-11-21 Thread Leeoniya
thats what i was looking for, thanks! On Nov 21, 10:25 pm, "Jeffrey Kretz" <[EMAIL PROTECTED]> wrote: > I've used a pattern like this: > > var table = $('table.class') >    .bind('click',selectCell); > > function selectCell(e) > { >    var cell = e.target; >    do_something(); > > } > > var cell

[jQuery] Re: has anyone come across a plugin like this ?

2008-11-21 Thread Rick Faircloth
Jason... I'm not sure I understand what your plug-in is for. When you say it's a "breadcrumb" plugin, I thought you meant it would show a site visitor the "trail" of pages visited. I'm not quite sure I know how to set this up. I created actual pages from your demo...biocompate.html, kits_assay

[jQuery] Re: setRequestHeader('Cache-Control', 'private') ... does not work in $.ajax call

2008-11-21 Thread Bil Corry
Mike Alsup wrote on 11/21/2008 7:27 PM: > "Responses to this method are not cacheable, unless the response > includes appropriate Cache-Control or Expires header fields. What are > your response headers? Hmmm. I created a new demo that uses $.ajax and includes both GET and POST: http:

[jQuery] Re: event delegation - great, but how does one trigger the handlers through code?

2008-11-21 Thread Jeffrey Kretz
I've used a pattern like this: var table = $('table.class') .bind('click',selectCell); function selectCell(e) { var cell = e.target; do_something(); } var cell = table.find('td.eq(8)'); selectCell.apply(table[0],[{target:cell[0]}]); JK -Original Message- From: jquery-en@googl

[jQuery] Re: exclude children from selected elements

2008-11-21 Thread Karl Swedberg
One very minor note: you don't need to do this: var elm = e.target || e.srcElement; this is fine: var elm = e.target; jQuery normalizes the target property. From the core file ... // Fix target property, if necessary if ( !event.target ) even

[jQuery] Re: Do i need to unbind event before removing DOM element

2008-11-21 Thread Karl Rudd
jQuery will take care of the cleanup. Karl Rudd On Sat, Nov 22, 2008 at 2:48 PM, George <[EMAIL PROTECTED]> wrote: > > I am creating dynamicly tag and binding click event. > $('#myspan').bind('click', param, myFunc); > > Then at some point this is removed using JQuery. Do i need to > unbind cl

[jQuery] Do i need to unbind event before removing DOM element

2008-11-21 Thread George
I am creating dynamicly tag and binding click event. $('#myspan').bind('click', param, myFunc); Then at some point this is removed using JQuery. Do i need to unbind click event first? Or it's ok and Javascript will clean that up automaticly.. George.

[jQuery] event delegation - great, but how does one trigger the handlers through code?

2008-11-21 Thread Leeoniya
During event delegation, handlers are registered higher in the DOM tree and then filtered when the event is triggered. This is great if you have 2000 td/th cells, you can attach a listener to tbody and filter down. But would i trigger the event programatically? Since the handler isnt actually regi

[jQuery] Re: jquery for slideshows

2008-11-21 Thread Sai Krishna
I found this through stumble. Thanks to Jquery. It reduces flash cost http://www.gruppo4.com/~tobia/cross-slide.shtml Sai Krishna On Sat, Nov 22, 2008 at 6:57 AM, Milan Andric <[EMAIL PROTECTED]

[jQuery] Does anyone know where I can find a Carousel like this?

2008-11-21 Thread IsRaz88
I've been trying for the past couple of days to find a Carousel like this that does expand and go into color when you click the picture: http://templates.entheosweb.com/template_number/18937.asp If anyone can point me in direction it would be very much appreciated. -IsRaz88

[jQuery] jquery for slideshows

2008-11-21 Thread Milan Andric
Hello, I am working on a project where one component is a slideshow application with audio. I'm wondering if I can use jquery/javascript for this. If anyone has any links to examples or ideas of ways to deal with a series of images and audio file that synchronizes with the images in javascript,

[jQuery] Re: setRequestHeader('Cache-Control', 'private') ... does not work in $.ajax call

2008-11-21 Thread Mike Alsup
> The example you listed below is using a different jQuery method, load > (), to retrieve the content. It's not sending the headers, which is > good. But I think I need to use the $.ajax() method. Ah, now I see what you're doing. You're using POST. Here's a snippet from http://www.w3.org/Proto

[jQuery] Re: Validate. Can I validate using 2 values?

2008-11-21 Thread shapper
Please, could you tell me how to do that? I would like to add the username only to this validate requests and not to all requests on my page ... If I add it to all requests on my pages will I not need to have username as input of all the other JSON methods even if I don't use it, Could someone,

[jQuery] Re: highlighting elements of the page

2008-11-21 Thread Karl Swedberg
Try using the .hover() method instead. http://docs.jquery.com/Events/hover#overout From the docs: Additionally, checks are in place to see if the mouse is still within the specified element itself (for example, an image inside of a div), and if it is, it will continue to 'hover', and not mo

[jQuery] Re: Crazy tables with checkboxes

2008-11-21 Thread c.barr
Yes, I was able to (finally) solve all these problems, it just took a bit longer than I thought. I forgot to post an update here that I've fixed it. Thanks for taking a look anyway though, if you see anything that can be improved, please let me know! On Nov 21, 7:00 pm, Karl Swedberg <[EMAIL PR

[jQuery] Re: Crazy tables with checkboxes

2008-11-21 Thread Karl Swedberg
Hey Chris, It looks like you managed to fix the other problems, too. When I click the header checkbox, only the rows with checkboxes are being highlighted now. And the rows aren't remaining highlighted when I check one and then check and uncheck a header. --Karl Karl Swedber

[jQuery] Re: setRequestHeader('Cache-Control', 'private') ... does not work in $.ajax call

2008-11-21 Thread frankadelic
When the browser requests a page, it can demand an uncached copy by sending these headers: Pragma: no-cache Cache-Control: no-cache For example, if you hit ctrl+F5 to refresh a page in Firefox, these headers will be sent in the Request. This tells the server to return an uncached page. My probl

[jQuery] Re: has anyone come across a plugin like this ?

2008-11-21 Thread CliffordSean
jason - your a legend thanks alot i look forward to playing with this! -- View this message in context: http://www.nabble.com/Please-REPLY-if-you-want-to-see-Jason-develop-this-Plugin-for-us-%21-tp20406388s27240p20631956.html Sent from the jQuery General Discussion mailing list archive at Nabb

[jQuery] Re: I have problem with Ajax and DIV

2008-11-21 Thread Ziki
I'm from Croatia, i solve it on Balcan way : On 22 stu, 00:33, Ziki <[EMAIL PROTECTED]> wrote: > Hi, > > I use jQuery fadeOut function and it works ok, but i have problem when > I want to call it from some other file; I have some form and it's > works with Ajax and return "You have successful

[jQuery] Re: Cycle plugin: using two #next controllers

2008-11-21 Thread Garreth
Wow, that was easy! Thank you Mike! On 21 Nov, 21:51, Mike Alsup <[EMAIL PROTECTED]> wrote: > > I can use them one at a time, but when I try them together only one of > > them works: Here is my code: > > >         $('#slideshow').cycle({ > >                 fx:     'fade', > >                

[jQuery] Re: exclude children from selected elements

2008-11-21 Thread ricardobeat
By the way, you could use event delegation to simplify things a lot: $(document).ready(function(){ $('body').mouseover(function(e){ var elm = e.target || e.srcElement; if ( !$(elm).parents('.ui-dialog').length ) { //if .ui-dialog is not an ancestor $(elm).doStuff();

[jQuery] I have problem with Ajax and DIV

2008-11-21 Thread Ziki
Hi, I use jQuery fadeOut function and it works ok, but i have problem when I want to call it from some other file; I have some form and it's works with Ajax and return "You have successfully post it!" in some div tag, and I want to fade out that div tag, but I don't know hoe to call that function

[jQuery] Re: Submitting the submit input value

2008-11-21 Thread Mike Alsup
> If I call > jQuery('form1').ajaxSubmit(); > > The value sent to the server is foo=bar and not foo=bar&button=click. > > Is there an easy way to get this to work? It's needed by my backend > server. Use ajaxForm instead of ajaxSubmit and you will get that behavior. Note that you call ajaxForm o

[jQuery] Submitting the submit input value

2008-11-21 Thread Phil Haack
I noticed that when I use the .ajaxSubmit button to post a form, it doesn't send the value of the submit button in the form data. For example: If I call jQuery('form1').ajaxSubmit(); The value sent to the server is foo=bar and not foo=bar&button=click. Is there an easy way to get this to

[jQuery] Re: is not a valid function

2008-11-21 Thread flycast
I am sure that I will be embarrassed by what the problem turns out to be but does anybody have any ideas here? I'm still stuck.

[jQuery] Re: "Clickable" DIV possible?

2008-11-21 Thread lukas
Thanks for your kind help. I had the wrong path to jquery!

[jQuery] Re: has anyone come across a plugin like this ?

2008-11-21 Thread yvonney
Can't thank you enough Jason. Wonderfully kindand Talented! On Nov 21, 12:37 pm, heysatan <[EMAIL PROTECTED]> wrote: > jBreadCrumb RELEASED > > Hi all, I've put the breadcrumb plugin up on jquery's site: > > http://plugins.jquery.com/project/jBreadCrumb > > Here's a link to the working exampl

[jQuery] Re: "Clickable" DIV possible?

2008-11-21 Thread Hector Virgen
Yes. Any element on the page will respond to click events, except for disabled form inputs. $('div#myDiv').click(function() { alert('myDiv was clicked'); }); -Hector On Fri, Nov 21, 2008 at 2:40 PM, lukas <[EMAIL PROTECTED]> wrote: > > Is it possible to "click" or select a DIV with jquery?

[jQuery] Re: Writing a plugin

2008-11-21 Thread halcyonandon
oh wow, this was a nice comment someone left... helpful... (function($) { // Private Variables and Functions var privateVariable = {}; function privateFunction() { }; // Public Variables and Methods $.namespace = { options: {}, publicVariable: []; publicMethod: function(

[jQuery] "Clickable" DIV possible?

2008-11-21 Thread lukas
Is it possible to "click" or select a DIV with jquery? $("DIV ID or Class?").click(function() { .

[jQuery] Re: Getting all checked check boxes with a certain id

2008-11-21 Thread Mike Alsup
> I'm trying to get the values of all checked check boxes in a certain > section of a page.  Each of the check boxes has the same id, I could > just as easily make it a class or whatnot. > > I'm using something like: > var valArray = $('#' + id + ' input:checkbox').serializeArray(); > > Although I

[jQuery] Re: Writing a plugin

2008-11-21 Thread halcyonandon
Oh no that function was just a snippet from something working well, im not writing this for tab functionality, but rather, for a reusable widget... I'm just wondering what this function would look like converted into jQuery as a reference for everything else involved. I arbitrarily selected that

[jQuery] Getting all checked check boxes with a certain id

2008-11-21 Thread Rage9
I'm trying to get the values of all checked check boxes in a certain section of a page. Each of the check boxes has the same id, I could just as easily make it a class or whatnot. I'm using something like: var valArray = $('#' + id + ' input:checkbox').serializeArray(); Although I know the abov

[jQuery] Re: Writing a plugin

2008-11-21 Thread Rik Lomas
I found this to be the best example of how to structure a plug-in: http://www.learningjquery.com/2007/10/a-plugin-development-pattern Rik 2008/11/21 Hector Virgen <[EMAIL PROTECTED]>: > You should take a look at jQuery's built-in tabs plugin. It may already do > what you're looking for. > http

[jQuery] Re: Cluetip Title displaying in FF and IE

2008-11-21 Thread jmueller0823
Okay. Looks like this is what's happening (in WordPress) 1. Using a text link, ClueTip works perfectly. 2. If using an image, the title displays when hovering the image. Ideas anyone? Thanks. On Nov 20, 3:22 pm, jmueller0823 <[EMAIL PROTECTED]> wrote: > This is installed in Wordpress, wonder

[jQuery] Re: Jquery Forms plugin and fileupload

2008-11-21 Thread Mike Alsup
> The first one, is how can one cancel an upload while upload is in > progress. You can cancel an upload by invoking the "abort" method on the XHR object (assuming you have the latest version of the form plugin, v2.17). To get a ref to the XHR you can either use the global 'ajaxSend' event hand

[jQuery] Re: Writing a plugin

2008-11-21 Thread Hector Virgen
You should take a look at jQuery's built-in tabs plugin. It may already do what you're looking for. http://docs.jquery.com/UI/Tabs -Hector On Fri, Nov 21, 2008 at 1:44 PM, halcyonandon <[EMAIL PROTECTED]> wrote: > > Hi, > > I'm new to JQuery, but I need to convert some regular, working, > java

[jQuery] [offtopic] can you perhaps tell why this page doesnt show in firefox?

2008-11-21 Thread Rene Veerman
This page displays fine in IE, opera and safari. But not in firefox :( http://tevlar.net/mytevlar/ any clues greatly appreciated.. -- -- Rene Veerman, creator of web2.5 CMS http://mediabeez.ws/

[jQuery] Writing a plugin

2008-11-21 Thread halcyonandon
Hi, I'm new to JQuery, but I need to convert some regular, working, javascript code into a JQuery plugin. I'll need to expand on this code once its in plugin form, but for now its just converting this existing code into a working JQuery plugin. I've reviewed the documentation on plugin authorin

[jQuery] Re: has anyone come across a plugin like this ?

2008-11-21 Thread Rick Faircloth
Very nice, Jason! I'll put that one to use! Rick heysatan wrote: jBreadCrumb RELEASED Hi all, I've put the breadcrumb plugin up on jquery's site: http://plugins.jquery.com/project/jBreadCrumb Here's a link to the working example (also linked to from the jquery page) http://www.comparenetw

[jQuery] Re: jCarousel (by Jan Sorgalla) scrolling integer problem

2008-11-21 Thread [EMAIL PROTECTED]
Nevermind, I was able to dig this up from Jan on another post and it fixed my problem. It was inline on the actual html page, and not controlled by the js file that is referenced. I still don't understand why the document that is referenced doesn't control the scrolling, but hey, I'm a newbie!!

[jQuery] Re: jQuery Quicksearch Plugin Help

2008-11-21 Thread abovegaucho
Good to know...again thanks for helping me with this. Hope you have a good rest of today. On Nov 21, 2:53 pm, "Rik Lomas" <[EMAIL PROTECTED]> wrote: > That's due to the script taking too much time to parse the > information, it's just one of those things that will happen when you > have such a lar

[jQuery] Jquery Forms plugin and fileupload

2008-11-21 Thread cambazz
Hello, I am using the file upload capacities of the form plugin successfully. However I could not find how to do two things. The first one, is how can one cancel an upload while upload is in progress. The second one is the progress indicator. I am using commons file upload, so I can calculate h

[jQuery] Re: jQuery Quicksearch Plugin Help

2008-11-21 Thread Rik Lomas
That's due to the script taking too much time to parse the information, it's just one of those things that will happen when you have such a large data set to iterate over Rik 2008/11/21 abovegaucho <[EMAIL PROTECTED]>: > Rik that worked! The only thing that I can't seem to explain is why I > g

[jQuery] Re: newbie wanting to get started

2008-11-21 Thread Youssef EL ALAOUI
Hi, You can get started by having a look @ : http://www.jcargoo.org/2008/10/you-said-jquery-yes-we-love-it.html. Regards, -- Youssef ELALAOUI JCargoo Founder www.jcargoo.org Pensez à l'environnement avant d'imprimer ce message / Think of the environment before printing out this message On Fri

[jQuery] Re: Cycle plugin: using two #next controllers

2008-11-21 Thread Mike Alsup
> I can use them one at a time, but when I try them together only one of > them works: Here is my code: > >         $('#slideshow').cycle({ >                 fx:     'fade', >                 speed:  '2000', >                 timeout: 0, >                 pager:  '#nav', >                 next:'#s

[jQuery] autocomplete and google toolbar autofill conflict

2008-11-21 Thread jjh
I have been on this issue for the past 24hrs and I can't seem to find the solution. There seems to be a conflict between the jQuery autocomplete plug-in (http://bassistance.de/jquery-plugins/jquery- plugin-autocomplete/) and google toolbar's autofill function. I'm testing this in IE 7. What really

[jQuery] autocomplete and google toolbar autofill conflict

2008-11-21 Thread jjh
I have been on this issue for the past 24hrs and I can't seem to find the solution. There seems to be a conflict between the jQuery autocomplete plug-in (http://bassistance.de/jquery-plugins/jquery- plugin-autocomplete/) and google toolbar's autofill function. I'm testing this in IE 7. What really

[jQuery] newbie wanting to get started

2008-11-21 Thread H-man
I am in charge of a high school website using Dreamweaver 8. I ran across jquery tabs one day. It looks cool and I would like to use it but have no javascript experience. Anyone willing to help? I really have no idea how to get started. I download jquery and then what? Thanks, H-man

[jQuery] jCarousel (by Jan Sorgalla) scrolling integer problem

2008-11-21 Thread [EMAIL PROTECTED]
I am using Jan Sorgalla's jcarousel, and it seems that the integer for the scroll doesn't really work. No matter what I do, or set it to, it always scrolls/advances by 3 frames. scroll integer 3 The number of items to scroll by. If I set the above to 1 or 100, it always scrolls by three.

[jQuery] Removing selector ""

2008-11-21 Thread adrianopons
Hello everyine! I have a grid with some links on it. I need to copy the object to a var and remove the selector "" when I click on a button. How can I do it? Thanks!

[jQuery] Cycle plugin: using two #next controllers

2008-11-21 Thread Garreth
Hi! Im trying to build a gallery using the wonderful cycle plugin. Everything works fine, Im just wondering if it is possible to use to next intances? One next controller on the image, and another one on a link (http://www.nabble.com/Cycle-plugin%3A-using-two--next-controllers-tp20628984s27240p

[jQuery] jQuery XHR problems with safari 3.2

2008-11-21 Thread Ronnyek
Ok, I've tried a number of grids including flexigrid, and jqgrid, and both fail to load via ajax, and json... I know things are next to impossible to troubleshoot, but the developer menu stuff shows error on line 2699 of jquery-1.2.6.js and the error is permission denied. Both grids worked flawl

[jQuery] Cycle plugin: using two #next controllers

2008-11-21 Thread Garreth
Hi. Im trying build a gallery using the wonderful jquery cycle plugin. Everything works fine, Im just wondering if it is possible to use two next controllers. One next controller on image-click, and one using a link ( ) I can use them one at a time, but when I try them together only one of them

[jQuery] Re: Crazy tables with checkboxes

2008-11-21 Thread c.barr
It seems jsbin.com is down right now, so I've uploaded it to my site: http://chris-barr.com/files/checkboxes/ source: http://chris-barr.com/files/checkboxes/DTcheckboxes.js Also, I've fixed the issue with shift-selection, but the other problems still remain. On Nov 21, 12:01 pm, "c.barr" <[EMAIL

[jQuery] Re: has anyone come across a plugin like this ?

2008-11-21 Thread heysatan
jBreadCrumb RELEASED Hi all, I've put the breadcrumb plugin up on jquery's site: http://plugins.jquery.com/project/jBreadCrumb Here's a link to the working example (also linked to from the jquery page) http://www.comparenetworks.com/developers/jqueryplugins/jbreadcrumb.html Let me know what y

[jQuery] Re: jQuery Quicksearch Plugin Help

2008-11-21 Thread abovegaucho
Rik that worked! The only thing that I can't seem to explain is why I get a box that reads: "A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see if the script will complete. Script: http://localhost/sort/js/jquery-1.2.6.pa

[jQuery] ajaxForm Error: Permission denied to call method Location.toString

2008-11-21 Thread Tolis Christomanos
Hi all, I have this form http://www.fares.gr/tests/well_fares_form/ And i am trying to load the server response to a div in the same page but i get the Permission denied to call method Location.toString Any ideas?

[jQuery] Plucking values from multiple inputs at once

2008-11-21 Thread Hector Virgen
>From what I undstand, jQuery#val() returns the value of the first matched element. Sample HTML: $('input[type=hidden][name="test\[\]"]').val(); // returns "foo" Is there an easy way to get an array of values from all of the elements that matched the selector? So far I have this, but I'd lik

[jQuery] Simple Validate if empty

2008-11-21 Thread coughlinsmyalias
Hey, I have been trying to look for a simple way to validate one field, if its empty then do X, how would I check? I have this: term = $('#term').attr('value'); Would I check if term is empty? Then don't allow the submit, my code is here: http://pastie.org/320870 Any thoughts? Thanks, Ryan

[jQuery] Re: A better way

2008-11-21 Thread Brendan
Very good to know! Now I know what to look for :) On Nov 20, 6:11 pm, Dave Methvin <[EMAIL PROTECTED]> wrote: > > I was looking at the jQuery docs for toggle here > >  http://docs.jquery.com/Events/toggle > > The toggle() without any arguments implements show/hide functionality, > so it's in the

[jQuery] smoother .animate()?

2008-11-21 Thread bnlps
Hi, kids -- there's a nice Flash site ... marcecko dot com ( especially, the window-content-movement, mouse.x/y) ... ported to html/jQ, but couldn't find a way to realise the "smooth sliding" part while moving; it's f'd, scratchy. any solutions? or, a Flash-only thing? thanks! -B now, have a

[jQuery] Re: detect element width change

2008-11-21 Thread MorningZ
Check out: http://www.west-wind.com/Weblog/posts/478985.aspx On Nov 21, 1:45 pm, Adam <[EMAIL PROTECTED]> wrote: > How can I detect when an element's width (or height) has changed?  For > instance, on a div element.

[jQuery] detect element width change

2008-11-21 Thread Adam
How can I detect when an element's width (or height) has changed? For instance, on a div element.

[jQuery] Re: Tablesorter pager and ajax

2008-11-21 Thread Balazs Endresz
http://tablesorter.com/docs/example-ajax.html inside the callback (the third argument for .load ) // let the plugin know that we made a update $("table").trigger("update"); On Nov 21, 5:43 pm, led <[EMAIL PROTECTED]> wrote: > I've noted that tablesorter and the pager don't work in ajax response

[jQuery] Re: Crazy tables with checkboxes

2008-11-21 Thread c.barr
err, correction to what I wrote, shift-selection only works when selecting top to bottom, not the other way around.

[jQuery] Re: jQuery Quicksearch Plugin Help

2008-11-21 Thread Rik Lomas
I would increase the delay to something like 1000, that may help performance I think the problem with taking the delay out is the comma at the end of the labelText bit, IE doesn't like those missing commas in objects Rik 2008/11/21 abovegaucho <[EMAIL PROTECTED]>: > I see... > > All I have ther

[jQuery] Re: Pause between each()

2008-11-21 Thread d . williams
This works perfectly! Thanks, Mike!

[jQuery] Re: jQuery Quicksearch Plugin Help

2008-11-21 Thread abovegaucho
I see... All I have there is very basic things $(document).ready(function () { $('table tbody tr').quicksearch({ position: 'before', attached: 'table', labelText: 'Search the GPI Fuel Product Manuals', delay: 50 }); }) If i take the delay:50 out I don't get a search box

[jQuery] document.location.hash and iFrame not working. help me please!

2008-11-21 Thread Mr.Ilia
Dear guys, hi! Please I need a help! I have stuck with applying a click into iFrame. I have a page with navigation. so when i need to open a page from URL with a certain tabs opened and clicked. i just use document.location.hash property. It works perfectly if I put the desired (that has to be

[jQuery] Re: jQuery Quicksearch Plugin Help

2008-11-21 Thread Rik Lomas
I meant in the options, so when you do $(...).quicksearch( options ); there isn't anything other than the basic stuff you need in the object you're passing through Rik 2008/11/21 abovegaucho <[EMAIL PROTECTED]>: > > First I must say that I really like your plugin...and I did go and > read some o

[jQuery] Re: jQuery Quicksearch Plugin Help

2008-11-21 Thread abovegaucho
First I must say that I really like your plugin...and I did go and read some other stuff on your site about your latest plugin...congrats! I have the following options in the jquery.quicksearch.js file...I believe that row striping is off...but I am not much of a programmer so let me know what I

[jQuery] Re: jQuery Quicksearch Plugin Help

2008-11-21 Thread Rik Lomas
Hi, I'm the author of the quicksearch plugin, unfortunately the code *is* a bit slow when dealing with large sets of data and it is one of the issues I'm trying to fix, I would recommend not having any extra features enabled to help speed it up (e.g. row striping) Someone might correct me, but I

[jQuery] jQuery Quicksearch Plugin Help

2008-11-21 Thread abovegaucho
I am having issues with the jquery.quicksearch plugin. I first created some php code to pull a csv file into a table. Then I used the plugin to search the table that was loaded through the php code. The table wasn't very large so it worked like a charm. However, I tried doing the same thing wi

[jQuery] Tablesorter pager and ajax

2008-11-21 Thread led
I've noted that tablesorter and the pager don't work in ajax response such as the content returned in the jquery load(), with or without previous Table tags How can i fix this . See this demo of the problem in http://realferias.com/pager.asp

[jQuery] Re: set default action for all links

2008-11-21 Thread Richard D. Worth
On Fri, Nov 21, 2008 at 11:28 AM, Pierre Bellan <[EMAIL PROTECTED]> wrote: > Hi, > > I don't know what lightbox is but it's not important. > Like you said, you just need an selector for all links. > > $('a').click(function(){ > myUrl = $(this).attr('href'); > openLightbox(myUrl); > }); Don't for

[jQuery] Re: SFBrowser updated to 2.5.1

2008-11-21 Thread Sjeiti
:-) heh... will do in just a minute... got a beer right here... just waiting for some people to show up so we can hit the streets. IE sucks though: can't see what is wrong there yet, guess I'm gonna have to make the php write a log file . On Nov 21, 5:17 pm, Mickster <[EMAIL PROTECTED]> wrote: >

[jQuery] Re: SFBrowser updated to 2.5.1

2008-11-21 Thread Mickster
Found it. The config.php wasn't included but I didn't get any error message from my php... So in index.php, I changed line 10 to include the config.php before the init.php: Works and looks really good! Keep up the good job! On Nov 21, 5:17 pm, Mickster <[EMAIL PROTECTED]> wrote: > Using Firefo

[jQuery] Re: set default action for all links

2008-11-21 Thread Pierre Bellan
Hi, I don't know what lightbox is but it's not important. Like you said, you just need an selector for all links. $('a').click(function(){ myUrl = $(this).attr('href'); openLightbox(myUrl); }); I think this code works, but i have not test it. Pierre Yogi Berra - "I never said most of the thin

[jQuery] Re: SFBrowser updated to 2.5.1

2008-11-21 Thread Mickster
Using Firefox 3, PHP 5.2.2. Firefox is quiet, says nothing. But don't worry about it - there's obviously something wrong on my side when not even the constants work - your code is good! I'll look into it again later! Leave the drawing board and have a beer at Rembrandtpleijn(?) instead :) Thank

[jQuery] Re: Load JQuery only once

2008-11-21 Thread Eric Martin
Raphael, Since you are creating a WordPress plugin, I suggest looking at the wp_enqueue_script() function[1]. Using your example, you'd include your scripts with something like: And WordPress will handle the loading of jQuery and your plugin scripts. -Eric [1] http://codex.wordpress.org/Fun

[jQuery] Re: SFBrowser updated to 2.5.1

2008-11-21 Thread Sjeiti
I checked it here on two webservers :-( What version php are you running? And if you have Firebug installed, what does the console say? or maybe... ah... bloody... you must be running IE The last version ran just fine in IE so I didn't bother to check (Firefox and Chrome were working so I presumed

[jQuery] Re: exclude children from selected elements

2008-11-21 Thread Bob O
Why dont you fire an event after the children have been loaded that removes them? On Nov 21, 3:07 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > My mistake, it is working. The problem was my lack of understanding > about how Dialog works.  main is the div from which I create a Dialog > an

[jQuery] set default action for all links

2008-11-21 Thread EC
Hi, i would like to know if is possible to set a default action for all href in a page... I know i can use selectors to find all href but i don't know what to put in function. I just would like that all link open in a lightbox... Someone can help me? Thanks

[jQuery] Re: SFBrowser updated to 2.5.1

2008-11-21 Thread Mickster
Thanks for your quick answer! I've downloaded it but I can't get it to work - for some reason the define constants doesn't work (suspect my setup has a bad day :) ). Anyhow, I changed all the constants and got all js-files to load. But when I click the examples, nothing happen - no errors, no not

[jQuery] Re: Jquery Countdown!!!

2008-11-21 Thread bthreesix
I pasted this in and it didnt work $('div#countdowntimer').countdown({until:new Date (2009,9,15,14,0,0),format:'odHMS'}); is there something im not doing right? heres my whole page http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd "> http://www.w3.org/1999/xhtml";> countdown

[jQuery] Re: NEWB ALERT: Why when calling a pre-existing function from .click() is it executed on page load?

2008-11-21 Thread Richard D. Worth
You need to simply pass the name of the function without parentheses like so $("#qSearchBut").click(quickSearch); Otherwise it executes the function immediately (upon parsing) and passes the result as an argument to .click(). - Richard On Fri, Nov 21, 2008 at 9:30 AM, .mini.moke <[EMAIL PROTECT

[jQuery] Re: NEWB ALERT: Why when calling a pre-existing function from .click() is it executed on page load?

2008-11-21 Thread Pierre Bellan
Hi, In your code, i think you call the function. You only need to put the name of the function. The code you wrote execute the function quickSearch then put the result as the name of the function to bind to click Like this : $("#qSearchBut").click(quickSearch); Pierre Lily Tomlin - "The troubl

[jQuery] Re: NEWB ALERT: Why when calling a pre-existing function from .click() is it executed on page load?

2008-11-21 Thread Liam Potter
$("#qSearchBut").click(function () { $(this).quickSearch() }); .mini.moke wrote: Hi there, I'm pretty new to JQuery. I have a couple of elements that need to call the same function so my code looks like this: $("#qSearchBut").click(quickSearch()); Pretty simple I thought. But th

[jQuery] NEWB ALERT: Why when calling a pre-existing function from .click() is it executed on page load?

2008-11-21 Thread .mini.moke
Hi there, I'm pretty new to JQuery. I have a couple of elements that need to call the same function so my code looks like this: $("#qSearchBut").click(quickSearch()); Pretty simple I thought. But this call executes the quickSearch() function on page load. What fundamental thing am I overloo

[jQuery] New help with jQuery and Visual Studio

2008-11-21 Thread MorningZ
For those Microsoft-using people like me, thought i'd point out some recent blog posts helping with getting Visual Studio 2008 Intellisense working with our beloved jQuery http://blogs.msdn.com/webdevtools/archive/2008/11/18/jscript-intellisense-faq.aspx I was pulling my hair out over #6 (childN

[jQuery] Re: SFBrowser updated to 2.5.1

2008-11-21 Thread Sjeiti
No example page (yet). Got a screenshot here though: http://www.sjeiti.com/wp-content/uploads/2008/11/sfbrowser.png But if you download it, it should work right away. There are three examples on the bottom of the root-index page.

[jQuery] clueTip send header with Ajax request

2008-11-21 Thread n8cshaw
Hi all. I am implementing clueTip and have it working just fine using an Ajax call. However, when all is said and done, the Ajax call will be hitting a web service that requires a custom authentication header. I have set up my jQuery global ajax options to send the header on all requests. jQuery.

[jQuery] Re: SFBrowser updated to 2.5.1

2008-11-21 Thread Mickster
Hi, do you have any example page somewhere? Would be nice to see before I download and test... Regards, Mickster On Nov 21, 12:27 pm, Sjeiti <[EMAIL PROTECTED]> wrote: > http://plugins.jquery.com/project/SFBrowser > SFBrowser is a file browsing and upload plugin. Returns a list of > objects wit

[jQuery] Re: linkselect plugin problem (related hover gets deactivated) -- help please

2008-11-21 Thread Liam Potter
Carl, can you not delete the quoted messages as most people dont use a web interface to follow newsgroups and now I have no idea what your reply relates to. clorentzen wrote: Dan -- Yep, that was it. Now the hover state of the parent nav panel doesn't get disturbed. ...And you were right ab

[jQuery] Re: linkselect plugin problem (related hover gets deactivated) -- help please

2008-11-21 Thread clorentzen
Dan -- Yep, that was it. Now the hover state of the parent nav panel doesn't get disturbed. ...And you were right about the repercussions on the placement of the dropdown. It's now appearing very far away from the actual initial link, unfortunately. Best, --Carl.

[jQuery] Re: $('#id').width()

2008-11-21 Thread Isaiah Fischer
But now that I think about it... The image wouldn't appear if the element hadn't been loaded either... So my previous suggestions probably won't fix the problem... :/ I'll take another look this afternoon and see if I can find out whats going wrong... On Fri, Nov 21, 2008 at 2:10 AM, Lee McMullen

  1   2   >