[jQuery] Hide/Show glossary page require for website using jQuery

2009-03-06 Thread JP
Hi There I am trying to implement a glossary page (A-Z) for a website. Basically when I user clicks a letter e.g A all the glossary terms listed under A will appear below and all other glossary terms will be hidden. I have a very simple working version below, but at the moment I am having to mana

[jQuery] Re: Autocomplete - Minimum Size of Possible Matches

2009-01-16 Thread JP
minimum word length. > See this page: > > http://dev.mysql.com/doc/refman/5.1/en/fulltext-fine-tuning.html > > Also, the stop-word list can be adjusted: > > http://dev.mysql.com/tech-resources/articles/full-text-revealed.html > > On Thu, Jan 15, 2009 at 11:25 PM, JP wro

[jQuery] Autocomplete - Minimum Size of Possible Matches

2009-01-16 Thread JP
Has anyone else run in to an issue with autocomplete not returning matches of less than five characters? I have it searching for matches starting at 2 characters, but for some reason it sits at the 'Loading' message if the only match is only 4 characters long? (For example, I'm typing in 'Ko' an

[jQuery] Superfish css question

2008-12-26 Thread JP
how do I control the level-three, left offset. I've tried changing many things but it has no effect. Any clues are appreciated.

[jQuery] thickbox popup window loses scrollbars in IE7

2008-12-12 Thread JP
thickbox (3.1) popup window loses scrollbars in IE7 has anyone got a solution for this ?

[jQuery] Catching if print layout in the browser

2008-08-21 Thread JP
Hello, I am trying to modify print layout in JS but is there a way jQuery (or in JavaScript general) to find out when user is going to print preview so I can execute custom actions. Somethig like onPrint, onPrintPreview???

[jQuery] Re: jBox plugin help needed

2008-05-30 Thread JP
x, lightbox or shadowbox? > > the link is not responding > > with thinkbox -http://jquery.com/demo/thickbox/ > > you can close with tb_remove(); > > 2008/5/21 JP <[EMAIL PROTECTED]>: > > > > > I am using this plugin > > >http://www.aspstat.com/jbox/

[jQuery] Re: corners plugin works in IE but fails in Firefox

2008-05-30 Thread JP
ok , it must be my settings in the browser, thanks for responding On May 28, 11:26 am, malsup <[EMAIL PROTECTED]> wrote: > > Can somebody help with why this example works in IE 7 but fails to > > show corners in Firefox 2 ? > > >http://paste.pocoo.org/show/55276/ > > That page works fine for

[jQuery] corners plugin works in IE but fails in Firefox

2008-05-28 Thread JP
Can somebody help with why this example works in IE 7 but fails to show corners in Firefox 2 ? http://paste.pocoo.org/show/55276/

[jQuery] jBox plugin help needed

2008-05-21 Thread JP
I am using this plugin http://www.aspstat.com/jbox/demo.htm owner has apparently died. and I need help knowing how to programmatically close the iFrame window. window.close and jBox.dispose( $('#jBox1') ); don't work thanks in advance

[jQuery] Re: validate a form using jsVal script

2008-05-12 Thread JP
It's also referenced here in the source code of the demo http://docs.jquery.com/Plugins/Validation On May 12, 3:12 pm, JP <[EMAIL PROTECTED]> wrote: > on the bottom of this page > > http://jquery.bassistance.de/validate/demo/ > > I did get jsVal working, it needs to

[jQuery] Re: validate a form using jsVal script

2008-05-12 Thread JP
re did you find the note? I thought I removed them.. > > Jörn > > On Mon, May 12, 2008 at 5:40 PM, JP <[EMAIL PROTECTED]> wrote: > > > your website says "jquery.delegate.js - special event delegation, > > required" but I don't see that in the downlo

[jQuery] Re: validate a form using jsVal script

2008-05-12 Thread JP
tance.de/jquery-plugins/jquery-plugin-validation/ > > Just released version 1.3. Let me know if you need help with it. > > Jörn > > On Mon, May 12, 2008 at 8:10 AM, JP <[EMAIL PROTECTED]> wrote: > > > In an $.ajax option beforsend, I want to call a function

[jQuery] validate a form using jsVal script

2008-05-12 Thread JP
In an $.ajax option beforsend, I want to call a function to validate a form using jsVal script (jsVal is here: http://jsval.fantastic-bits.de/ The home page shows examples) I tried the following: ... $.ajax({ beforeSend: showRequest, ... function showReques

[jQuery] using jsVal for validation

2008-05-12 Thread JP
In an $.ajax option beforsend, I want to call a function to validate a form using jsVal script (jsVal is here: http://jsval.fantastic-bits.de/ The home page shows examples) I tried the following: ... $.ajax({ beforeSend: showRequest, ... function showReques

[jQuery] Re: preset selection of radio buttons

2008-05-07 Thread JP
PROTECTED]> wrote: > On Mittwoch, 7. Mai 2008, JP wrote: > > > I hate this google group -- can't edit posts > > You said that three times already. You do know that this "group" is mainly > a mailing list? And that's is technically impossible to cance

[jQuery] jquery docs - example not working

2008-05-07 Thread JP
why does this jquery example for val(val) of radio buttons not work ? http://docs.jquery.com/Attributes/val

[jQuery] preset selection of radio buttons

2008-05-07 Thread JP
(I hate this google group -- can't edit posts) I need to know how to preset multiple radio buttons Revised sample code: $(document).ready(function(){ $("#radioname:checked").val(["0", "1"]); });

[jQuery] Re: preset selection of radio buttons

2008-05-07 Thread JP
I hate this google group -- can't edit posts Revised sample code: $(document).ready(function(){ $("#radioname:checked").val(["0", "1"]); }); On May 7, 11:12 am, JP <[EMAIL PROTECTED]> wrote: &

[jQuery] Re: preset selection of radio buttons

2008-05-07 Thread JP
I hatwe this google forum -- can't edit posts Revised sample code: $(document).ready(function(){ $("#radioname:checked").val(["0", "1"]); });

[jQuery] preset selection of radio buttons

2008-05-07 Thread JP
what is correct way to preset selection of radio buttons? $("#radioname:checked").val(["0", "1"]); });

[jQuery] prefill textarea

2008-05-06 Thread JP
nothing seems to work. how does jquery prefill a textarea ? http://code.jquery.com/jquery- latest.pack.js"> $(function() { $("#textareaName").val("hello1"); $("#textareaName").text("hello2"); $("#textareaName").html("hello3"); $("[EMAIL PROTECTED]'textareaName']".val("hello4")

[jQuery] using.attr('type') returns undefined

2008-05-06 Thread JP
if i have if I do: $('#fname').attr('type') - it returns "undefined" how can I get the "type" ?

[jQuery] Re: processing json object

2008-05-05 Thread JP
for(var i = 0; i < records; records++){ > for(var j in records[i]){ > str += j + " --> " + records[i][j] + "\n"; > } > } > window.alert(str); > } > > } > > hth, > Nicola > > O

[jQuery] Re: JQuery Ajax Form Plugin

2008-05-04 Thread JP
i use the form plugin with firefox and it seems to work fine. On May 4, 7:36 am, Pedro Mendonça <[EMAIL PROTECTED]> wrote: > Hello, > > http://malsup.com/jquery/form/ > > I'm trying to implement the Form plugin in my site, but I have a > problem. I use ajaxForm to make the form send the variabl

[jQuery] processing json object

2008-05-04 Thread JP
how can I process values from json object without having to use indivual reference names? using json: ( {"Records": [ {"firstname":"Nancy","lastname":"Davolio"} ], "RecordCount":"1" } ) instead of : $.ajax({ .. success: function(json, status) { if(json.Records){alert("Records="

[jQuery] getJson not working - need help

2008-05-04 Thread JP
pictures of cats show but Ican't get response function to alert when pointing to an ASP page. ASP page does render the sample json response listed below http://www.w3.org/TR/html4/loose.dtd";> $(document).ready(function(){ $.getJSON("[jQuery] Re: Fading out a text
That was it! Nice and simple CSS no need trickering around with javascript. Thanks -jp On Jan 7, 1:05 pm, "Erik Beeson" <[EMAIL PROTECTED]> wrote: > Effect can be seen here:http://fortuito.us/ > > I think I would be inclined to overlay an alpha PNG to get that

[jQuery] Fading out a text

Hi, I want to create an effect where text on the line starts to fade out after 100 characters. I though, I have seen such an effect somewhere but now I cannot find it. I think earlier Gmail inbox items were rendereder like that but maybe I just remember wrong because now they don't do that. Has a

[jQuery] Cannot execute javascript after AJAX request on SSL page

Hi there, I am a bit stuck with IE security. I am trying to execute javascript after the AJAX request but this is not working on IE when running site on HTTPS. When site is on http AJAX works just fine. Firefox works fine on both SSL and http. Here is a simple sample that fails on HTTPS but work