[jQuery] Re: jeditable - Tabbing between jeditable elements

2008-11-21 Thread Mika Tuupola
On Nov 21, 2008, at 7:10 AM, [EMAIL PROTECTED] wrote: At present, a tab keyPress results in discarding the edits. I have not been able to get the callback to fire to submit the edit then change focus to the target element if I tab out of the element. I would like the tab key to result in the

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

2008-11-21 Thread Lee McMullen
Thanks, I'll try your suggestions and let you know. Just out of curiosity, why would binding the field setup to the window load have an effect? I thought that was the whole point of using $ (function(){}), so you didn't have to wait for the window to load? On 21 Nov 2008, at 04:01, Isaiah

[jQuery] Re: treeview pluging issues - .find(.hitarea)

2008-11-21 Thread alex tait
Thanks for your help guys. Direct decen I will take a look at the plugin you have been developing. On Thu, Nov 20, 2008 at 4:50 PM, Andy Matthews [EMAIL PROTECTED]wrote: Without seeing the rest of the code, the .hitarea is a CSS selector for direct descendants. There's generally

[jQuery] dynamic tree / treeview

2008-11-21 Thread Bhavin
Hi I am using jquery to create tree structure type of functionality dynamically. I have to add nodes by opening dialog and save it into the database. Once response is returned then I need to show it on the page. I have few doubts here: 1) Once node is inserted into the database and response is

[jQuery] Re: exclude children from selected elements

2008-11-21 Thread [EMAIL PROTECTED]
It still doesn't work. I think part of the problem is because the children of main are added after I create the event listener. Second solution is to check in the event listener if the target is a child of main and if so, return. I know how to get the children of main , but how to I check the

[jQuery] Re: treeview pluging issues - .find(.hitarea)

2008-11-21 Thread alextait
I have taken a look at your plugin... that fantastic! Unfortunately it does not seem to do what i need. Since our category/product data is so huge... I am trying to create a tree that will populate the child nodes only when the parent node is clicked. Once loaded into the dom the user can

[jQuery] Re: Resize an element without affecting the layout

2008-11-21 Thread vani
I made some progress as you can see here: http://tinyurl.com/645ow4 , but I've ran into problem with jquery hover function. Its over and out functions fire too many times while the cursor is still over the same image. That happens only if I use the animate effect inside the over function, if I

[jQuery] Re: exclude children from selected elements

2008-11-21 Thread [EMAIL PROTECTED]
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 and I didn't want the event listener to be added to the elements of main. However main is NOT the first element of the Dialog. I the background it is wrapped

[jQuery] How to create multiple dialog in same page by jquery?

2008-11-21 Thread Tony
When I try to to this, I found it looks like the second dialog wasn't created. Who knows how to implement it? Thanks $(document).ready ( function() { $(div#form1).dialog ( {

[jQuery] Re: Resize an element without affecting the layout

2008-11-21 Thread Liam Potter
rather then using hover try binding the mouseenter and mouseleave events to it. $(img).bind(mouseenter, function () { animate stuff }); $(img).bind(mouseleave, function () { back to normal }); vani wrote: I made some progress as you can see here: http://tinyurl.com/645ow4 , but I've ran

[jQuery] Re: Resize an element without affecting the layout

2008-11-21 Thread vani
I have thus far tried the hover, mouseover/out, and bind methods with pretty much the same effect, over and out happen unexpectedly... On 21 stu, 11:14, Liam Potter [EMAIL PROTECTED] wrote: rather then using hover try binding the mouseenter and mouseleave events to it.

[jQuery] Re: How to add html do a div properly? (html(), val(), or text() ?)

2008-11-21 Thread ginko100
ok guys. thank you both.

[jQuery] Re: How to create multiple dialog in same page by jquery?

2008-11-21 Thread Richard D. Worth
Your code looks fine. Could you share a more complete code sample here http://jsbin.com/ so we can see what you're seeing? Also, there is a dedicated list for jQuery UI questions: http://groups.google.com/group/jquery-ui/ Thanks. - Richard On Fri, Nov 21, 2008 at 1:36 AM, Tony [EMAIL

[jQuery] SFBrowser updated to 2.5.1

2008-11-21 Thread Sjeiti
http://plugins.jquery.com/project/SFBrowser SFBrowser is a file browsing and upload plugin. Returns a list of objects with additional information on the selected files (filesize,date,width,height). Features: ajax file upload, localisation, sortable file table, file filtering, file renameing, file

[jQuery] Re: jquery.cycle centering image

2008-11-21 Thread Mike Alsup
since technically there is no next element, it goes back to the front? There is always a next slide. :-) The problem in IE7 was that I had an extra comma in the code that I posted and a JS error was occurring in IE7. I didn't realize the extra comma problem had been fixed in IE8 - good to

[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

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

2008-11-21 Thread Isaiah Fischer
With this though, since you are changing the width of an ID, if the element with that ID hasn't loaded yet, then it cant change the width of it. Unless the width is specifically set for that particular ID in the CSS. Which is why the second option is viable. On Fri, Nov 21, 2008 at 2:10 AM, Lee

[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: 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

[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 with

[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] 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] 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

[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

[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 this

[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 trouble

[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

[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 !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN

[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

[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: 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 and I

[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

[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: ?php wp_enqueue_script('plugin1', '/wp-content/plugins/plugin1/js/ plugin1.js', array('jquery') ); ? ?php

[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 :)

[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

[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: ?php include_once(sfbrowser/config.php);include_once(sfbrowser/ init.php); ? Works and looks really good! Keep up the good

[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: 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 forget the

[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] 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

[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] 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
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 other

[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 abovegaucho
I see... All I have there is very basic things script type=text/javascript $(document).ready(function () { $('table tbody tr').quicksearch({ position: 'before', attached: 'table', labelText: 'Search the GPI Fuel Product Manuals', delay: 50 }); }) /script If i take the

[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 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 there is

[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: 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 such

[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: 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] 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: 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 Effects

[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] 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[] value=foo / input type=hidden name=test[] value=bar / $('input[type=hidden][name=test\[\]]').val(); // returns foo Is there an easy way to get an array of values from

[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] 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:

[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

[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] 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 (a href= id=next ) I can use them one at a time, but when I try them together

[jQuery] Removing selector a

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 a 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 (a href=# id=next) Here is my code: $('#slideshow').cycle({

[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

[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] 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

[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] 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

[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',                

[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

[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 get

[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

[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 large

[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: 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)

[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

[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] 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, javascript

[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 handler

[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,

[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.

[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

[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] 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 know

[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: 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:

[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: 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 example (also

[jQuery] Re: Clickable DIV possible?

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

[jQuery] Re: function 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] 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: form name=form1 input type=text name=foo value=bar / input type=submit name=button value=click / /form If I call jQuery('form1').ajaxSubmit(); The

[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=barbutton=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 once to

[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: 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] 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',                 speed:  

[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 successfully post

[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

[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

[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

[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

[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

  1   2   >