I'd imagine you'd want something like this?
$('input#query').autocomplete('yoururl',{
.
your options
.
}).result(function(event, item, formatted) {
$(this).parents().find('form:first').submit();
});
I hope this helps
RobL
jjunior wrote:
I'm having
Hi there,
I'm having an awful lot of bother trying to get this working. I want to
implement auto completion for a text field as follows
Currently our application returns a json string which we eval to extract
the results and once the item is selected it fills in the hidden field
value wit
I am having trouble getting my wordpress theme to use the Superfish in
the nav menu. My problem is I have subcategories that go 3 tabs deep
and currently it is very tough to navigate through the drop down menu
so I wanted to get Superfish to work since I have used it with other
non-Wordpress sites
n['parentMenu'] "... what is this notation called?
On Dec 10, 2:12 pm, "Josh Nathanson" wrote:
> Maybe try closing the option tag?
>
>
>
> -- Josh
>
> -Original Message-
> From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] O
I'm having some problem with selectors in Internet Explorer. I have
this demo setup that is basically a modified "linked menus"
application. When you select something from one menu, it updates the
contents in it's child menu.
For some reason Internet Explorer will not read the correct selector.
. Glad it works.
>
> -T.J.
>
> On Dec 9, 11:42 am, rob wrote:
>
> > Nevermind... I found the error... I'm having one of those mornings...
> > Thanks for you help tho
>
> > On Dec 9, 10:30 am, rob wrote:
>
> > > I switched the .click event with .l
Nevermind... I found the error... I'm having one of those mornings...
Thanks for you help tho
On Dec 9, 10:30 am, rob wrote:
> I switched the .click event with .live(click), and it sort of works
> now. The problem with the parentMenu not updating is now ok. When I
> click the na
on to all matched elements on the page and
> loaded in via AJAX or otherwise.
>
> Hope that helps.
>
> T.J. Simmons
> Sent from my iPhone
>
> On Dec 8, 2009, at 5:28 PM, rob wrote:
>
> > I built a little utility modeling a linked menus concept... Click an
> > item
I built a little utility modeling a linked menus concept... Click an
item in the parent menu, and the child menu will update.
When a parent option is selected the childMenu is reloaded with new
. Selecting these no longer triggers $("#childMenu >
option").click(function(){}); Does anyone have an
Hi there,
I'm trying to use jquery.form.js to allow file uploads with my
application. I'm trying to replace saving the whole form and uploading a
image all at the same time by hijacking just the input[type=file] change
event when you select a file and saving just the file using ajax and
then
I have this set of code...
$('#thumbnails').append("");
This creates thumbnails on my webpage. In internet Explorer, they show
up fine, but in Firefox they do not. I checked the image properties
(right click -> properties). In IE, it is listed as a JPEG, but in FF,
it says text/html. I have a fee
> postlink.push(link.href);
> }
> });
>
> alert(postlink.join(', '));
>
> });
>
> On Oct 22, 8:02 pm, rob wrote:
>
> > I'm having some problem withreturnvalue for a function. I have read
> > some postings about
I'm having some problem with return value for a function. I have read
some postings about this, but I'm just not understanding something.
Hopefully somebody can help me with this
I'm trying to access google blogger's API to display blog entries on
my site. I'm doing this through JQuery and
I'm not sure if this JFeed plugin is not being used much, or maybe I'm
using it for the wrong thing. Here's a better way to pull the Blogger
Content...
http://code.google.com/apis/gdata/samples/blogger_sample.html
On Oct 19, 2:59 pm, rob wrote:
> Hello,
>
> I'
Hello,
I've been working on this for a while and I can't seem to figure this
out. I'm trying to use the jFeed plugin to access an RSS feed from
Blogger. I'm not trying to use any authentication, I just want to use
public read-only access.
I tried some real simple examples at first (using jFeed
try taking the numbers out of the parentheses like this:
.animate({ backgroundPosition: "0px 0px",},{duration:400})
On Oct 13, 2:45 pm, vicix wrote:
> hi,
>
> i build a menu with a background position animation plugin by Jonathan
> Snook’s.
> The mouseover and mouseout are correct, but i d
7;;
> $("#"+fieldName).remove(); // removes input
> $("label[for="+fieldName+"]").remove(); // removes label
>
> Assuming that your label will always have the same "for" as the ID of
> the input.
>
> On Oct 1, 8:09 am, rob wrote:
>
>
I'm using a form in several places for this project. I don't want to
duplicates of this form so I have it as an include file. Each page
requires all the same fields, however, there is one page where I'd
like to remove two fields.
First Name
Is there a way to remove an input field and it's l
Having some trouble with this plugin. I've tried in both IE8 and FF3,
but it doesn't seem to work.
Basically the background position isn't moving...
the function toArray(strg) is suppose to return the following
return [parseFloat(res[1],10),res[2],parseFloat(res[3],10),res[4]];
this is th
asically, when you add elements to the DOM dynamically after page load,
> jQuery won't recognize those elements unless the live() method is used.
>
>
>
> On Tue, Sep 15, 2009 at 4:20 PM, rob wrote:
>
> > Hello,
>
> > I am having some problems with selectors and ev
asically, when you add elements to the DOM dynamically after page load,
> jQuery won't recognize those elements unless the live() method is used.
>
>
>
> On Tue, Sep 15, 2009 at 4:20 PM, rob wrote:
>
> > Hello,
>
> > I am having some problems with selectors and ev
Hello,
I am having some problems with selectors and events. I have a row of
thumbnails all part of the "thumbnails" class. I'm trying to run some
code when a thumbnail is clicked, but something weird is happening.
When i use this selector/event:
" $(".thumbnails").click(function(){ // run some
sue? If so, is there a workaround?
Many thanks, Rob
Found my own anser from earlier post. This worked:
$(function() {
$("#dollar1").bind("click",function() {
$("#EndUser",top.document).val( $("#setEndUser").val() );
});
});
On Thu, Jun 11, 2009 at 9:36 AM, robert...@gmail.com wrote:
> Hello,
>
> I have a page in an Iframe and when the user clicks
Hi folks, I hope you can help me out, I have a bit of html that looks
something like:
div
--h1
--h2
--p
--p
--h2
--ul
--h2
--p
And am trying to figure out a way to grab from that code each h2 and
its siblings, up-to-but-stopping-at the next h2, for example, I want
to grab from the simplified
BTW, don't mind the double pound signs, those get escaped by
Coldfusion when the page is loaded.
Hello,
Is there a way to always know what values are selected inside of a
jquery ui autocomplete widget? I know there is a "result" event that
fires when you select a value, but what about when you remove a value?
Thanks,
Rob
Hi there,
I'm getting an interesting problem with addClass and removeClass. I'm
attempting to build a rating system using radio buttons to select the
rating. I'm actually hiding my radio buttons and styling the label to
have pretty stars instead for a nicer interface. I want to highlight the
I should have expounded more on the rest of it, but I had to run to a
meeting. My apologies. :(
On Mar 31, 11:21 am, LinkGuru wrote:
> Apologies to Rob (I had only tried his 'add the id attribute to
> the select tag' suggestion), I now find that if I write p_viewSelector=
One thing I see wrong there:
You are referencing dllViewSelector as an id in your jQuery, but you
only have that as a name in your html. either add the id attribute to
the select tag, or reference it as $("select[name='dllViewSelector']
option:selected") in your jQuery.
On Mar 31, 6:51 am, LinkG
implemented this sort of
thing before? Cna anyone point me in the right direction for how to
implement this? I feel like I'm approaching it wrong...
TIA
--rob
IE allows users to type in the value in a file field, it's Firefox
that prevents that.
Also I think the syntax there may be wrong. I would use the name of
the file field and change it's value attribute to blank.
HTML:
jQuery (using 1.3.x)
$("#button").click(function(){
$("input[name='f
Filed on trac too: http://dev.jquery.com/ticket/4146
--rob
On Feb 13, 5:04 pm, "[rob desbois]" wrote:
> Hi Brandon,
>
> Give this a whirl:http://pastebin.com/d20276791
> Shows the described behaviour in Firefox 3.0.6
>
> o_0
>
> --rob
>
> On Feb 13, 2
Hi Brandon,
Give this a whirl: http://pastebin.com/d20276791
Shows the described behaviour in Firefox 3.0.6
o_0
--rob
On Feb 13, 2:34 pm, Brandon Aaron wrote:
> This isn't the normal behavior. Could you create a test case for this?
>
> --
> Brandon Aaron
>
> On Fri,
This seems backwards; I would never expect that passing the return of
a getter to its corresponding setter to change the return from the
getter!
Can someone tell me if this is a bug or is by design - and if by
design, why?
TIA,
--rob
t;
> For another example on generating
> those:http://jquery.bassistance.de/validate/demo/dynamic-totals.html
>
> Jörn
>
> On Fri, Jan 9, 2009 at 12:34 AM, Rob wrote:
>
> > Hi Jörn,
>
> > I have been plugging away at this for a while now, with no luck. I
> >
pear to be validated along with
the other fields. Could I trouble you to take a quick peek at my test
page?
Thanks,
Rob
On Jan 6, 2:34 am, "Jörn Zaefferer"
wrote:
> The validation plugin binds various events to the form, handling everything
> that bubbles up from its form elements. So
bles up from its form elements. So you don't have to add any event
> binding after adding new elements, just make sure the validation rules are
> present. If it isn't working, its probably a different issue.
>
> Jörn
>
> On Mon, Jan 5, 2009 at 11:26 PM, Rob wrote:
ing the elements
would do the trick, but no such luck.
Rob
On Jan 5, 1:12 pm, brian wrote:
> On Mon, Jan 5, 2009 at 2:40 PM, Rob wrote:
>
> > Hi Jörn or anyone else familiar with this plugin,
>
> > First off, thanks for the great validation plugin. I hope I do not
> >
I add append the code for a new field, the validation
events are, of course, not attached to the new DOM elements. What's
the best way to accomplish this?
Rob
I add append the code for a new field, the validation
events are, of course, not attached to the new DOM elements. What's
the best way to accomplish this?
Rob
On Dec 17, 9:57 am, MorningZ wrote:
> "Is it a non-200 status code"
>
> I can't say it's 100% of the time, but in my code it seems to be the
> case
Ding, ding, ding. Looks like that's it. In my PHP script, this is what
I did to test...
try {
throw new Exception ( 'Something I made up' );
}
ck to
receive the response if the server page returns an error, but what is
that way?
Thanks.
Rob
On Dec 16, 3:33 pm, Ricardo Tomasi wrote:
> Your thickbox script most certainly provides a callback function where
> you could add those handlers, which one are you using?
Hey Ricardo -
I'm using http://jquery.com/demo/thickbox/.
I'll dig a little deeper. I was hoping someone already knew th
Hey all -
I'm looking for/wondering whether there is a way to access an element
loaded in a thickbox. I have a page that launches thickbox to load a
form. I need to be able to set a click() event listener on the submit
button of that form so that I can submit the form via ajax.
Unfortunately, I
this.
Thank you,
Rob Bazinet
how about if you click the item that is open and you click that item
again...how would you make it close? And does the contents of the menu have
to be wrapped in tags?
Rob
On Sun, Oct 5, 2008 at 5:34 PM, Alex <[EMAIL PROTECTED]> wrote:
>
> i have managed to pull this off pretty w
ker";
fvBuf.push(READER_ID);
fvBuf.push("/");
fvBuf.push(filename);
fvBuf.push("&autoPlay=true&autoRewind=true");
$("#flashvars-data").attr("value", fvBuf.join(""));
var player = $("#playerContainer").clone(true);
//console.log("player: ", player.html());
$("#playerContainer").html(player.html());
}
Any ideas?
thanks,
-Rob
Noone knows how to stabilize the animation and make this run better?
On Fri, Sep 12, 2008 at 11:42 AM, RFletcher <[EMAIL PROTECTED]>wrote:
> I am making an accordian menu with 4 main buttons. All buttons should
> be closed at start. When you click 1 button the content area should
> slide down an
this._callback(hash);
> > }
>
> > -
>
> > I note that the multiple click sounds occur in thejQueryHistorydemo
> > as well, so don't think it is just my implementation.
>
> > Is there perhaps another way to load the new hsh location into the
> > iframe?
>
> > Any help much appreciated :)
>
> > Thanks,Rob
I note that the multiple click sounds occur in the jQuery History demo
as well, so don't think it is just my implementation.
Is there perhaps another way to load the new hsh location into the
iframe?
Any help much appreciated :)
Thanks, Rob
one, I don't know. It modifies the way
> the user gets the title (much more subtle/hidden the second way).
>
> How to do this ?
>
> $('div.box').each(function(){
> this.title = $(this).find('h3').remove().attr('title') || '';
>
&g
me script in my site's startup script that looks for all divs with
the class "box" and modifies them so the ending result is like the
above.
Some neat content
What do you think?
Thanks in advance,
Rob
elect? I've been trying on the element I called .tabs()
on initially to create the tabs but that just does nothing
TIA,
--rob
On Jul 2, 2:11 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote:
> On Jul 2, 2008, at 7:57 AM, [rob desbois] wrote:
>
>
>
>
>
> > Hi, have a feeling this may be a silly question but here goes..
>
> > Test output from Firebug's console is below to explain
ont]
I then want to find a particular one:
>>> $("div", divs)
Object length=0 prevObject=Object jquery=1.2.6
Given that the 'expr' parameter to $(...) contains an array of divs,
why is using the selector "div" not returning anything from that?? Am
I misunderstanding expr?
Confused...
--rob
/trunk/ui/ui.dialog.js
>
> and will be included in the next jQuery UI release, in a couple days.
>
> - Richard
>
> On Sat, May 31, 2008 at 5:12 PM, Rob Ashton <[EMAIL PROTECTED]> wrote:
>
> > Two things.
>
> > In opera:
>
> > $(
Two things.
In opera:
$('#confirmSnippetDelete').dialog(
{
position: new Array(600 , 500)
}
);
The script ignores the 'top' position specified as the second value of
that coordinate pair. This was narrowed down to a local variable
called 'top' which was conflicting with the 't
ole.log(e, e.metaKey);console.log("Try to cancel
select-all"); // This gets triggered.
e.preventDefault();
//e.stopPropagation();
//var t =
setTimeout("$('#header-login').trigger('click');console.log('click');", 20);
return false;
}
});
-Rob
link : linkQueue[id]
> }, { callback : handleAddLinkComplete, arguments : [123] }, 'json');
or something.
What is the best way here or is my dream a reality?
Cheers,
-Rob
On Nov 20, 2007 5:02 PM, Josh Nathanson <[EMAIL PROTECTED]> wrote:
>
> WOW, thanks for that link to debugbar.com -- I had been searching far and
> wide for an IE debugger and couldn't find anything good -- that is sweet!
It's no Firebug, but it's the best I've seen for IE.
On Nov 16, 1:33 pm, Rob Wilkerson <[EMAIL PROTECTED]> wrote:
> I'm trying to "manually" interact with the multifile plugin and, as
> part of that endeavor, I need to systemically access the anchor tag
> that provides "Delete" functionality. The
ny insight would be much appreciated. I don't see any indication in
the jQuery docs that this type of selector shouldn't work in IE...
Thanks.
Rob
ogle.com/p/jqueryselectcombo/
http://lasso.pro/selectCombo/
3. Check out my plugin:
http://www.msxhost.com/jquery/linked-selects/json/
Perhaps you can use the example php code in the download to work it out
for ASP!
Cheers
Rob
Snooze wrote:
I am trying to make a select box that with populate depending
Mark,
I think you are saving the document as rich text format (RTF).
Try pasting the code sample into notepad and save it from there.
Once that works, make sure that in whatever editor you're using you save
things as 'plain text'.
Hope that helps
--rob
On 10/24/07, mark &l
Rodrigo,
This has now been implemented along with some additional features.
jqMultiSelects v0.2 is available from
http://code.google.com/p/jqmultiselects/
Cheers,
--rob
On 10/22/07, Rob Desbois <[EMAIL PROTECTED]> wrote:
>
> Hey Rodrigo,
>
> Apologies for the massive time
Thanks to everyone who made suggestions and waited for so long.
Further information and downloads are available from
http://code.google.com/p/jqmultiselects/
--rob
--
Rob Desbois
Hey Rodrigo,
Apologies for the massive time in replying, I am very busy these days.
That is a great suggestion, and one which a few people have mentioned. I
will modify the official plugin source as soon as possible, but for now your
fix does just great :-)
All the best
--rob
On 9/22/07
I know this should be simple, I know this should work, but it isn't
and doesn't.
so if you take a look-see at
http://www.roberthenrylowe.com/lab/jQuery/codeconverter.html
in Firefox, you'll see what I am trying to accomplish and in fact, it
works there. Basically I take a block and make it a fa
That's perfect! Thanks so much
On Oct 11, 12:53 am, George <[EMAIL PROTECTED]> wrote:
> I've not tried this but what if you use .text($codetext) instead of
> append($codetext) ?
> (Or is this not what you want?!)
>
> George
I would like to grab a string that contains '<' and '>' and NOT have
jQuery eval and force my browser to render it has html. It's
difficult for me to convey what I want, but basically I am trying to
send it latin or unicode entity references for the angle brackets and
want to write those brackets
that I can determine what
is being dragged and dropped where?
Best,
Rob
e mouseup event) ? Is there a way that I can determine what
is being dragged and dropped where?
Best,
Rob
Hi Stephen,
Awesome, I like the look of this a lot!
I can't wait to find some time to muck about with this in the very near
future.
Good Luck with your project.
Rob
[EMAIL PROTECTED] wrote:
Well I have been playing with jQuery for a few months, and wanted to
test a few basic con
Hi Karl,
Thanks for your feedback, I will certainly make that modification you
have suggested.
Ya know you really do lean something new everyday ;)
Kind regards
Rob
Karl Rudd wrote:
Very nice.
I know it's only a demo but you could reduce size of the JSON
responses by about 60% (or
ion
Israel
Hi Israel
Check out my recently announced plugin called LinkedSelects.
http://www.msxhost.com/jquery/linked-selects/json/
It might be of assistance to you!
Cheers
Rob
e can advise on that I'd be
very grateful.
As an aside - Joern this is the first time I've used validate, all I'll say
is thank you, it's a fantastic plugin very well thought-out.
--rob
--
Rob Desbois
On Sep 17, 9:17 am, Rob Wilkerson <[EMAIL PROTECTED]> wrote:
> I have a form that is using both the ajaxFileUpload and the MultiFile
> plugins. When a user selects a file for upload, the change event
> uploads the file via ajax for validation. If an error occurs, I need
>
On Sep 17, 9:17 am, Rob Wilkerson <[EMAIL PROTECTED]> wrote:
> I have a form that is using both the ajaxFileUpload and the MultiFile
> plugins. When a user selects a file for upload, the change event
> uploads the file via ajax for validation. If an error occurs, I need
>
, but the page doesn't show the updated styles.
Any ideas on what to track down? I've checked that the style is indeed
changed with Firebug on postbacks, so I have no idea why the browser
doesn't display the updated styles.
Thanks
Rob
ebug
// alert ( data['files'] );
$('form').prepend (
''
);
}
}
catch ( e ) {
alert ( 'Error: ' + e.message );
}
},
Any help would be much appreciated.
Thanks.
Rob Wilkerson
susggestion: including a cache option in call function."
Do you mean like caching the DB queries?
Kind regards
Rob
IE.
I would like to thank Remy Sharp for the initial idea, Joel Birch for
some pointers on building plugins and especially my good friend Shelane
Enos for the collaboration.
I would appreciate any feedback in the way of suggestions and improvements.
Have a great weekend everyone...
Rob
>
> I think you might be able to use John's modified version of Rhino that
> acts like a browser. Where it is I'm not sure but it wasn't that long ago
> that he wrote it.
>
> --
> Brandon Aaron
>
> On 9/12/07, Sean Catchpole <[EMAIL PROTECTED]> w
r attachEvent are defined (I change the else
to an else if to check attachEvent - it's undefined).
Seeing as there's been a fair bit of mention of jQuery in Rhino on the list,
I find it hard to believe jQuery won't work with it - so has anyone who's
used Rhino with jQuery seen this
y() after checking that is is defined, I
still get the same result:
> if (typeof $(document).ready === 'function')
>
I know this is likely to be a Rhino/HttpUnit problem but as I know several
people on this list are familiar with Rhino I wanted to know if anyone's
seen this
nt.
I did just visit, but a minute of clicking things yielded no error for me,
so I have given up.
What are the errors you're receiving? Have you tried debugging?
--rob
On 8/22/07, Trinodia <[EMAIL PROTECTED]> wrote:
>
>
> Hi all!
>
> Just have gotten my head int
Does anyone know offhand how much overhead using .add() instead of the comma
incurs?
Is it just the additional function call?
I've always used comma in selectors but using .add() instead is much clearer
as it separates the selectors in an obvious manner.
--rob
On 8/15/07, Matt Stith &l
#x27; is the class object
>});
> }
>
I hope that helps...if I'm wrong can you give a URL or some example code?
--rob
On 8/12/07, Eridius <[EMAIL PROTECTED]> wrote:
>
>
>
> now when i use the .each function, inside that function "this" points to
> the
Your trusty friend 'Google' is usually the best way for this!
A quick search on javascript array max yields a useful result from none
other than John: http://ejohn.org/blog/fast-javascript-maxmin/
--rob
On 8/10/07, Simpel <[EMAIL PROTECTED]> wrote:
>
>
> Hi there! not
I'm not sure how to do this as it stands - I've never been particularly au
fait with text nodes and how to work with them.
However, a possible solution is to put the text next to the checkbox in a
and then attach the click event to that.
--rob
On 8/9/07, David Garcia Ortega <[EM
Hi Mike,
If you use $("table table") that will select all tables which are inside
another table in the document.
--rob
On 8/7/07, Mike Miller <[EMAIL PROTECTED]> wrote:
>
>
> Hi,
>
> I need to find a quick way to determine whether or not table elements
> o
Andy,
For future reference in case you need it on a different column - the
:nth-child(n) selector will do a similar thing for the nth column (n is
1-based, not 0-based though).
--rob
On 8/7/07, Andy Matthews <[EMAIL PROTECTED]> wrote:
>
> Right on! That's exactly what I w
ed elements as an array of DOM objects, so $("#feeds").get() will give
you an array with a single DOM element - that with the ID 'feeds' (unless it
doesn't exist, in which case you'll get an empty array).
HTH,
--rob
On 8/7/07, Jack <[EMAIL PROTECTED]> wrote:
&g
. if Type(x) is different from Type(y), return false.
Steps 2-13 of both algorithms are exactly the same, so if the types match
then there's no difference in the execution of each algorithm, and no
overhead for the abstract algorithm.
--rob
On 8/2/07, Terry B <[EMAIL PROTECTED]> wrote:
&
;t for the life of me remember how, but
it involved lots of in-depth debugging and head-scratching to find the
problem. I'm more wary now and think that these operators are the way to go.
--rob
On 8/2/07, Sam Collett <[EMAIL PROTECTED]> wrote:
>
>
> I don't think many a
he best scripter and jquery has simply allowed me to
> > > accomplish with my own personal site so much more than I would
> > > have otherwise attempted. You people behind jquery are genious and
> > > your work is great, thanks.
> > >
> > > Kiww
f causing.
> >
> > What does this have to do with religion? The answer is nothing
> > directly, but it does demonstrate the power of belief. If you believe
> > that mobile masts will make you ill you will feel ill. If you believe
> > in God then God will have real spiritual impact in your life,
> > regardless of whether or not he really exists.
>
>
--
Rob Desbois
Eml: [EMAIL PROTECTED]
Tel: 01452 760631
Mob: 07946 705987
"There's a whale there's a whale there's a whale fish" he cried, and the
whale was in full view.
...Then ooh welcome. Ahhh. Ooh mug welcome.
Sean,
Attributes in (X)HTML don't need to be double-quoted, again single-quotes
are equally valid there so '' and "" are
effectively the same and both valid.
I know you probably know, I just wanted to rephrase "It is easier to type an
html string if you use sing
Larry,
Try the dynarch calendar at http://www.dynarch.com/projects/calendar/
It's not jQuery but does the job and can most likely be ported to jQuery if
desired.
--rob
On 7/26/07, Larry Garfield <[EMAIL PROTECTED]> wrote:
Thanks, Kelvin. (And sorry about misspelling your nam
1 - 100 of 265 matches
Mail list logo