[jQuery] exposing autocomplete methods

2009-06-21 Thread skunkwerk
Hi, i'm using the autocomplete plugin with the google gears database running locally, so I need a way to have a callback function update the autocomplete functions when it has the results from the database. the only issue is that the plugin doesn't return anything when you call it, so there's

[jQuery] plugins aren't applied on second call

2009-06-09 Thread skunkwerk
hi, i've been having an issue with the jPicker and jquerySpinButton plugins. if i apply each plugin to one instance (say, a span) they work fine. however, the next time I do the call, the elements are not modified by the plugin. on the demo page, there should be two spin boxes, and two

[jQuery] Re: plugins aren't applied on second call

2009-06-09 Thread skunkwerk
be shortened to: $('#txtSpin1, #txtSpin2').SpinButton({min:1}); The same applies to the spans - rename the first id='color1' and the second id='color2'. Rgds Paul On Jun 9, 7:57 am, skunkwerk skunkw...@gmail.com wrote: hi,    i've been having an issue with the jPicker and jquerySpinButton

[jQuery] help positioning color picker

2009-05-15 Thread skunkwerk
Hi, i'm using this jquery color picker: http://www.eyecon.ro/colorpicker/ on my page here: www.akbars.net/eurisko/basic.html but i can't seem to position it in the toolbar with the rest of the buttons - its always on a new line... any suggestions? thanks imran

[jQuery] full file path from file input

2009-04-29 Thread skunkwerk
Hi, some of the newer browsers (firefox 3) only make the filename available from a file input element, even though the full path is displayed in the text box. anyone know of any techniques to get around this? i've tried using google gears, flash, and considered a java applet, but am having

[jQuery] [autocomplete] custom fields for remote URLs

2009-04-07 Thread skunkwerk
Hi, i'm using the autocomplete plugin here (http://docs.jquery.com/ Plugins/Autocomplete) and want to be able to use it with a remote URL, while at the same time having access to have text displayed one way, and selected another way (ie display a piece of text, but then change what is entered

[jQuery] adding columns to table row

2009-04-07 Thread skunkwerk
Hi, i'm trying to make a really basic 'tab bar' for a project. i looked at the stuff out there (ui tabs, and flytabs) but wanted something simpler. i basically need to create a bunch of horizontal cells that can be added to, and don't need any div-switching or anything for the content (just

[jQuery] can't get hotkeys working in input fieldssdfsd

2009-04-02 Thread skunkwerk
Hi, i'm trying to use the js-hotkeys plugin for determining when a user has pressed 'enter' in a textbox or input element. i've tried this code under firefox 3 and safari under mac os x, with jquery 1-3.2 and js-hotkeys .7.8, and it does not work: html head script type=text/javascript

[jQuery] jquery.flash error

2008-06-04 Thread skunkwerk
I'm getting the error: block.call is not a function in line 95 of jquery.flash.js, as reported by firebug here's my javascript code: $('#portal').flash( { src: 'http://www.akbar.net/media/portal.swf', base: http://akbar.net/path/file/;, width: 600,

[jQuery] mouse hover focus not working in FF2

2008-05-30 Thread skunkwerk
I'm using the jquery mousewheel plugin, which is working fine on IE 6 and firefox 3, but not firefox 2. firebug shows no javascript errors. my code is supposed to switch focus between two elements as the mouse hovers over them (one contains a flash widget): $(function() { $('#widget')

[jQuery] ajax calls don't work in firefox 3 beta 4

2008-05-09 Thread skunkwerk
I've got some code with post ajaxForm calls in it that work fine in IE and FF 2, but not firefox 3. Using firebug I can see that the calls are apparently being made as they should, but for some reason never get to the server. Is this a jQuery issue or a firefox issue? i'm using the latest

[jQuery] livequery help

2008-05-08 Thread skunkwerk
hi, how can I access the URL of an a tag - when I was using the non- livequery version of this ajax form, I could just use $(this)[0] but that's returning an html document now, and $(this).href is undefined. var container = $(#table); container.find(a).livequery('click', function(e){

[jQuery] ajax tabs not working

2008-05-08 Thread skunkwerk
i'm following the instructions here: http://docs.jquery.com/UI/Tabs i've included the following: script type=text/javascript src=http://dev.jquery.com/view/trunk/ ui/ui.core.js/script script type=text/javascript src=http://dev.jquery.com/view/trunk/ ui/ui.tabs.js/script link rel=stylesheet

[jQuery] livequery help

2008-05-08 Thread skunkwerk
how do i access the url of an a tag matched by jquery? when i was not using livequery, i could just do $(item)[0] but that doesn't seem to be working anymore, as its returning an http document now. here's my code: container.find(a.vote).livequery('click', function(e){ e.preventDefault();