nope, is not that, the form and form/name "problem" is because i just
wrote in here a simplified version of the script and i mis-typed. in
the original script it's form_name/form_name. My form it looks like
it's submitted(the php page is loaded) but i get those errors in the
php because those valu
In this line of code, I'm looking for a div whose Id is in variable
b1, and which has an input button field whose value is "Show" or
"Hide", and this line is to toggle those values.
$(("[id$="+b1+"]") input).attr(value, attr(value)
=="Hide"?"Show":"Hide");
This doesn't work, and Firebug gives m
Using the latest version of both jQuery (jquery-1.3.2.min.js), and
validate (1.5.5), Safari 4...
When a non-required input box is cleared of all text inside, and the
field is tabbed out of, there is no call made to my 'remote' file to
check to see if the field is valid or not... which leaves the
What does your xml look like? I am guessing it may not be well formed.
If $.get returns a string and you pass it to $() it will attempt to
parse it as html and an html link tag isn't supposed to have children.
If you force xml then it might return nothing if the xml is not well
formed.
I'm trying to get my parent ULs to show their :hover state when their
children ULs are expanded.
I've tried copying the:
.sf-menu li:hover, .sf-menu li.sfHover,
.sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active
to my LI id's:
#nav li#products a:focus,
#nav #products.sfHover,
#nav #products
How would I validate this group of two selects:
* Expires
MM
01
02
03
04
05
06
07
08
09
10
11
12
2009
2010
2011
2012
2013
2014
Thanks! I just sorted that out.
Answered my own question. I needed to prepend # to the id for the
jQuery functions to work.
$('#' + id).show();
On Oct 6, 7:29 pm, James wrote:
> Try:
>
> $('#'+id).show();
>
> On Oct 6, 1:17 pm, vjimw wrote:
>
> > Here is my .ready function using tabs and a cla
Answered my own question. I needed to prepend # to the id for the
jQuery functions to work.
$('#' + id).show();
On Oct 6, 6:17 pm, vjimw wrote:
> Here is my .ready function using tabs and a class of .remote to start
> using the history plugin
>
> // Show and hide product grids
> $(document).rea
The syntax for post()'s second parameter (data) should be serialized
or key/data JSON pairs.
jQuery.post(".../gravatar-check.php", {userEmail: em...@email.com},
function(data)
{
// response callback
}
});
Here, your POST variable for the email will be "userEmail" (
It should be fairly straightforward.
Get the content of the text field: $("PartNum").val();
Use the split() function to split each line by "\n" (return).
Then for each of those lines, split it again by " " (space).
(Store all of these in an array(s).)
Then you can use the join() function to add ",
Try:
$('#'+id).show();
On Oct 6, 1:17 pm, vjimw wrote:
> Here is my .ready function using tabs and a class of .remote to start
> using the history plugin
>
> // Show and hide product grids
> $(document).ready(function() {
> $(".remote").click(function(event) {
> document.location.hash
The name of your form is "form", not "form_name" as you have in your
Javascript.
Do you have other fields aside from the upload field?
Try putting other fields. In PHP do a "print_r($_REQUEST)" to see if
you get anything.
On Oct 6, 1:43 pm, kknaru wrote:
> hi i have something like this:
>
> //
>
See
http://blog.nemikor.com/2009/04/08/basic-usage-of-the-jquery-ui-dialog/
If you have any further questions, note there's a dedicated list for jQuery
UI discussion:
http://groups.google.com/group/jquery-ui
- Richard
On Tue, Oct 6, 2009 at 3:25 PM, webspee...@gmail.com
wrote:
>
> Hey all. I'm
please try cacheLength=0 arg to autocomplete.
On Fri, Oct 2, 2009 at 03:45, Otniel Zebua wrote:
Ok, I have got it with $_GET.
But now I have another problem, if I choose "England" for the country, then
I press "a" in autocomplete input box, then $_GET['country'] value will be
"GB" in the serve
you need a hidden field to hold the value, and play around with the result
trigger.
hth
On Mon, Oct 5, 2009 at 23:16, benze wrote:
Hi,
I'm trying to figure out how to use the autocomplete jQuery plugin
best to my needs. I'm looking to replace a select box with the
Autocomplete plugin, but
hi i have something like this:
//
javascript--
$('a').click(function(){
$('div').load('form.html',function(){
$('form[name="form_name"]').submi
Here is my .ready function using tabs and a class of .remote to start
using the history plugin
// Show and hide product grids
$(document).ready(function() {
$(".remote").click(function(event) {
document.location.hash=this.title;
show_subcat_menu();
toogle_subcat_ul('ul
I really hope someone can assist:
I am trying to take a form field:
The user will put in part numbers , space, qty, carraige return ,then
another entry on the next lineit will look like this:
bd 2
bd1200 5
I want to split this into two querystring variables before submitting
to next
MorningZ, done that. My approach is exactly what some other folks are
using. I'm just wondering if anybody has come up across the problems
I'm having with some fields being empty that really aren't empty in
the XML. Or, that when they specify the XML dataType, JQuery returns
an empty data objec
> An additional question I have for sake of completeness
>
> Will empty(), remove() unbind just child element events (1 level down)
> or events for ALL descendants?
All descendants.
Hi,
Since the docs don't say - I'm wondering if the replace() and
replaceWith() methods unbind events the same way that empty() and
remove() do?
Thanks,
J
An additional question I have for sake of completeness
Will empty(), remove() unbind just child element events (1 level down)
or events for ALL descendants?
Thanks,
J
On Sep 1, 8:50 pm, mkmanning wrote:
> .remove() "will also remove all event handlers and internally cached
> data"http://docs.
Hi all,
I have installed Superfish menu module with Joomla ..
Customization work more less fine ...
I still have tenious problem like :
- How to have the main menu with the active color, when one of the sub-
menu has been actived ?
- How to change the inactive color of the sub-menu without cha
Hello people,
I'm new in this group [and also beginner as a translation of scripts]
and already i have a doubt. How to "translate" this prototype code for
jQuery?:
$(document).observe('dom:loaded', function(){
// Select all textboxes and assign them to an array
var textboxes = $$('form.awesome
I'm beginner with jQuery and JavaScript in general and since I didn't
find solution in documentation or on web, I'm asking here.
I'm writing some plugin for WordPress publishing tool which should
check if commenter has avatar on Gravatar.com. This part works for
unregistered users and you can see
I have several 'top level tabs' and within some of these I have use a
vertical tab list and assigned these a class of "vertical-tab" for css
purposes.
All is fine styiling wise but...
now I want to add a javascript call to the onclick of each tab.
for the top (horizontal, non-nested) tabs I wan
Maybe take a look at what people have done in the past?
http://www.google.com/search?q=jquery+rss+reader
It definitely appears do-able
MorningZ ha scritto:
Right in the link I provided above to jsbin:
http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/
jquery.min.js">
Same for me.
Cache problems?
--
gianiaz.net - web solutions
via piedo, 58 - 23020 tresivio (so) - italy
+39 347 7196482
Hello,
I'm trying to parse RSS feeds with JQuery in order to extract data.
Here's what I've tried:
$.get('php-lib/proxy.php', {url: 'http://feeds.reuters.com/reuters/
businessNews'}, function(data, textStatus) {
var feed = $(data);
var list = $('#headlinesFeed');
var html = [];
Oops, typo:
> $obj = getFlashMovie(name);
I forgot to add this:
var name = 'communication';
You should post this on jquery dev group:
http://groups.google.com/group/jquery-dev
On Tue, Oct 6, 2009 at 16:28, mk.keck wrote:
>
> Hello,
>
> I've found an error in Line 2853:
> IE8 stopps with follow Error Message:
> 'Mitglied nicht gefunden' in Zeile 2853 Zeichen 9
> 'Member not found' Line
Hi,
What would be the jQuery version of this:
=
function getFlashMovie(movieName) {
var isIE = navigator.appName.indexOf("Microsoft") != -1;
return (isIE) ? window[movieName] : document[movieName];
}
...
...
$obj = getFlashMovie(name);
=
The abov
Hi
I am building an asp.net web application using visual studio 2008
with .NET 3.5 on Windows XP 32 bit machine where I have the server as
well. C# and javascript are used.
There is contactUs.aspx, once the form is submitted successfully, I
want to run the jQuery in the contactUs.js file startin
Hello,
I've found an error in Line 2853:
IE8 stopps with follow Error Message:
'Mitglied nicht gefunden' in Zeile 2853 Zeichen 9
'Member not found' Line 2853 Char 9
This happens with the fixClick Plugin (http://plugins.jquery.com/
project/FixClick)
I think the Problem is in the function jQuery
I have a set of jqueryui tabs that, when clicked, load in their
content dynamically. It works great, except that one of the pages uses
a jquery plugin itself. This results in two issues:
- The main page that holds the tabs throws an error when loaded
because there is js that refers to elements th
Hello !
I'm jQuery newbie and now trying to build an application
with jQuery Grid interface. My page is that ---
http://djalmabina.orgfree.com/jQueryGrid/jQuery_Grid.html
The left side frame is a XML menu , tree2.xml what loads
another html files within my webse
You can do it like that if what you're doing with it is not critical,
because setting values in hidden fields is still considered user-
modifiable content. Could you provide more information on what you're
trying to do? Maybe there are better ways to go about doing it.
On Oct 6, 5:18 am, CoffeeAd
Nice catch, Mike. I've completely overlooked that issue and only
focused on getting the setTimeout to execute something. :)
On Oct 6, 10:00 am, Michael Geary wrote:
> Good tip, but don't use the string version:
>
> setTimeout("e.show(200);", 1000);
>
> Use the function version:
>
> setTimeout(fu
Good tip, but don't use the string version:
setTimeout("e.show(200);", 1000);
Use the function version:
setTimeout(function() {
e.show(200);
}, 1000);
When you pass a string to setTimeout() or setInterval(), the code is
executed in the *global context*.
If the code is inside a function and
Right in the link I provided above to jsbin:
http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/
jquery.min.js">
On Oct 6, 3:11 pm, Phil wrote:
> I reverted to JQuery 1.2.6 from 1.3.2 and it works fine now. Not sure
> why that should be. Which version are you using?
>
> On Oct 6, 6:31 am,
Could anybody help me to replace a normal search
setTimeout(e.show(200), 1000);
should be:
setTimeout("e.show(200);", 1000);
or:
setTimeout(function() {
e.show(200);
}, 1000);
(line-end semi-colon not necessary, but should be used for good
practice)
On Oct 6, 7:57 am, Dennis Madsen wrote:
> I'm trying to create new DOM and append it t
Hey all. I'm trying to work with a dialog box and when the page has
been refreshed, the dialog box appears fine. But if I close it out and
try to open it again, it won't open.
Here is the code I'm using.
$(function() {
$("#quickAddDisplay").dialog({
bg
The callback needs to be a function.
$j(".dialogBookingError").show(200, function() {
$j(this).effect("highlight",{},650);
});
On Oct 6, 9:10 am, Dennis Madsen wrote:
> I have this code sample:
>
> $j(".dialogBookingError").show(200).effect("highlight",{},650);
>
> I would like the effect f
I reverted to JQuery 1.2.6 from 1.3.2 and it works fine now. Not sure
why that should be. Which version are you using?
On Oct 6, 6:31 am, MorningZ wrote:
> The Show/Hide functionality for that HTML also works just fine for me
> on FF 3.5.3
>
> http://jsbin.com/axibo/edit(although i used "togg
I have this code sample:
$j(".dialogBookingError").show(200).effect("highlight",{},650);
I would like the effect first to run after the show is finish.
Therefore I try:
$j(".dialogBookingError").show( 200, $j(this).effect("highlight",{},
650) );
But it does not work. Hope someone can help me
Were you able to find a solution to get it working in Firefox?
Thank you
david
On Oct 1, 10:25 am, Vitaly Piven wrote:
> Hello David,
>
> I have similar problem . $.post() sends some "OPTIONS" request instead
> of expected "POST" (according to logs of web server).
>
> On 25 сен, 21:32, David P
In JavaScript, $ and _ are treated just like letters. For example:
var a$b_c = 1;
alert( a$b_c ); // alerts '1'
jQuery just happens to use $ as a function name - and as Giovanni mentioned
the same function is also named jQuery.
In addition to the $ function, you'll often see variables beginning
I'm trying to create new DOM and append it to a div. When the div is
appended, I would like it to be shown after 1sec.
var e = "content";
$("#container").append(e);
setTimeout(e.show(200), 1000);
This code does not work. The HTML is appended but the show-function
does not
I would like to replace a generic search box with a multi select
dropdown menu from which a user can select several items. I found
http://dropdown-check-list.googlecode.com/svn/trunk/demo.html .
Unfortunately, but with almost 30kb it is too large for my
application.
Could maybe anybody direct me
Hi,
I have this strange problem. I am using autocomplete to help autofill
the form text input field width name of streets. User can choose
between streets of two towns, selecting the check box. I also added
autofill acceptance with pressing ENTER key. Everything works fine
until user changes the c
Hi samh12,
I am working on something similar where I want to highlight elements
in a page in the way that you describe. I wonder if you have come
across a solution. One thought I have is to leverage jQuery's powerful
selection ability. Like, perhaps you apply $.blockUI to every element
on the pag
thanks mr giovanni :)
Hello people,
I'm new in this group [and also beginner as a translation of scripts]
and already i have a doubt. How to "translate" this prototype code for
jQuery?:
$(document).observe('dom:loaded', function(){
// Select all textboxes and assign them to an array
var textboxes = $$('form.awes
Got most of this code from various tutorials and examples, and
customized it for my needs. Everything is working great, except for
the content replacement function I'm using. We have four
DIV's...#menu, #content, #side, and #footer. Any link that is clicked
in #menu is setup to hide the #content,
Just $("#btnRegister").click(function{ // handler code...}) is ok I think if
the id is unique.
On Tue, Oct 6, 2009 at 11:42 PM, CoffeeAddict wrote:
>
>
> I'm trying to get reference to a certain button on the DOM. I tried this:
>
> $('button#btnRegister').click(function() {
>
> where button has
hi,
i am using latest version of jquery autocompletion plugin.
and have populated an array(input for autocomplete) abt 800 entries.
now strangely when i type a letter which triggers large results, i can
see a scrollbar in mozilla but not in Internet explorer 7.
i have only included jquery.auto
thanks jorn
On Tue, Oct 6, 2009 at 4:38 PM, Jörn Zaefferer <
joern.zaeffe...@googlemail.com> wrote:
> Right here:
> http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/
>
> Source (for now) is here:
> http://bassistance-plugins.googlecode.com/svn/trunk/plugins/autocomplete/
>
> Jörn
>
CoffeeAddict ha scritto:
I'm trying to get reference to a certain button on the DOM. I tried this:
$('button#btnRegister').click(function() {
where button has the ID of btnRegister.
is this right?
I think so, but I never use this syntax.
For definition the id is unique, then I use always
I'm trying to get reference to a certain button on the DOM. I tried this:
$('button#btnRegister').click(function() {
where button has the ID of btnRegister.
is this right?
--
View this message in context:
http://www.nabble.com/Access-a-certain-Button-tp25771231s27240p25771231.html
Sent from
I want to check a value client side in jQuery. The bool will tell me if the
user is logged in or not. Is the only/best way to do this in ASP.NET
specifically is with a hidden field?
--
View this message in context:
http://www.nabble.com/Check-value-client-side-tp25770768s27240p25770768.html
S
Wow! It really is that simple. Thanks.
On Oct 5, 12:19 pm, brian wrote:
> $('.caption').each(function()
> {
> $this.width($this.find('img').width());
>
> }
> On Mon, Oct 5, 2009 at 11:52 AM, bombaru wrote:
>
> > Can somebody help me out? I'm trying to set a width of a span class
> > based
Doh...thank you Karl for saving my behind. Parse Int won't work...coffee
hadn't kicked in yet.
Cheers,
- Jonathan
On Mon, Oct 5, 2009 at 6:58 PM, Karl Swedberg wrote:
>
> On Oct 5, 2009, at 11:43 AM, Jonathan Sharp wrote:
>
> You can run a parseint on the number: var myInt = parseInt( '15,000',
Hi Dennis,
We had some issues with jqModal and unfortunately only the minified source
is available so we ended up using the jQuery UI dialog component with great
success.
(Note the filesize listed on the jQuery UI page is for the entire zip file,
the library itself is much smaller)
http://jqueryu
Hey,
I'm looking for a widget like this one:
http://docs.jboss.org/richfaces/latest_3_3_X/en/devguide/html_single/#rich_pickList
Do you know any?
Thanks for help and time.
oops, copy/paste error. as there is no "text" method on RegExp
objects, disregard the snippet above. it should be:
// Existing "contains" filter
function (a, i, m) {
return (a.textContent || a.innerText || jQuery(a).text() ||
"").indexOf(m[3]) >= 0;
}
// New ":text-equals" filter
function (a
Yes, as I describe I use Joomla CMS where a lot of the functionality
is written in Mootools.
On 6 Okt., 15:35, Liam Potter wrote:
> is there a reason you need both libraries?
>
>
>
> Dennis Madsen wrote:
> > I'm developing a site in Joomla CMS which use both MooTools and
> > jQuery.
>
> > I've c
Hi Julijan,
It sounds like what you need is a ":text-equals" filter The reason
":contains" fails in this case is because it does a global match. By
anchoring the same RegExp against the beginning and end of the string,
you should be able to select elements whose text matches exactly:
// Existing
Gernot,
It's probably not what you want to hear, but I would suggest trimming
the main menu down by creating some groupings. I think you will find
the usability and appearance improves, moreover, your issue will be
resolved.
Best of luck,
Patrick
On Oct 6, 9:06 am, Hetsch wrote:
> Hi,
>
> firs
Ok, I can try that.
But I need a condition to know when to remove the inner div B. When I
mouse over the inner div B it was already removed.
If I don't remove it, I need a condition to remove it in the mouse out
event of div A. But as i told before, mouse if I mouse over the div B
is assumed as a
Hi,
I want to ajax submit the form when I change the value of the dropdown
menu...
I have been using the following code... but it's not working.
I am using jQuery form plugin
Please help me out... it's very urgent.
Thanks a lot.. :)
-Sagar
Snippet of my code:
--
Hi,
first thing to say is, thanks for the wonderful menu.
I have a small issue in Internetexplorer 7 and below. I have allready
read something about the z-index bug, but it seems to be another
issue.
Have a look at: www.skyrunning.at. The menu looks nicely if it's a
really wide sreen resolution,
is there a reason you need both libraries?
Dennis Madsen wrote:
I'm developing a site in Joomla CMS which use both MooTools and
jQuery.
I've created a small, clean page where you can see the problem:
http://www.dennismadsen.com/uploads/mootools_jquery/
You can download the source-code from th
The Show/Hide functionality for that HTML also works just fine for me
on FF 3.5.3
http://jsbin.com/axibo/edit (although i used "toggle", but that's the
same thing inside)
On Oct 6, 3:31 am, Giovanni Battista Lenoci wrote:
> Phil ha scritto:> I am having an issue in firefox 3.5.3 I am using the
Yeah, you can only close windows you opened with javascript.
Jonathan Vanherpe (T & T NV) wrote:
Muhammad Arif wrote:
Hello All:
I'm trying to close a browser window.. using
windows.close().. but its not working...
so can you help me.
Regards
I think it's window.close(), an
I'm developing a site in Joomla CMS which use both MooTools and
jQuery.
I've created a small, clean page where you can see the problem:
http://www.dennismadsen.com/uploads/mootools_jquery/
You can download the source-code from this URL:
http://www.dennismadsen.com/uploads/mootools_jquery/mootool
Is there any reason you have this
var StateID = $("#ddlStates > option[selected]").attr
("value");
instead of just this
var StateID = $("#ddlStates").val();
not sure if that's the issue, but it's a start to "less code to break"
On Oct 6, 12:59 am, TRaymond wrote:
> I was trying out some sam
On Oct 6, 1:17 pm, SmiThiCo wrote:
> Hi all,
> I've have been struggling a hole day around this and I can't find a
> proper solution :(
>
> I have a div A that when I mouse hover creates and appends in run time
> another div B inside with an higher z-index. This new div B is a info
> div that I
Muhammad Arif wrote:
Thanks you very much for your reply.. but if window.close() so for
popup so then how can we close a browser window
Regards
On Tue, Oct 6, 2009 at 4:08 PM, Jonathan Vanherpe (T & T NV)
mailto:jonat...@tnt.be>> wrote:
Muhammad Arif wrote:
Hello All:
Thanks you very much for your reply.. but if window.close() so for popup so
then how can we close a browser window
Regards
On Tue, Oct 6, 2009 at 4:08 PM, Jonathan Vanherpe (T & T NV) <
jonat...@tnt.be> wrote:
>
> Muhammad Arif wrote:
>
>>
>> Hello All:
>> I'm trying to close a
Right here: http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/
Source (for now) is here:
http://bassistance-plugins.googlecode.com/svn/trunk/plugins/autocomplete/
Jörn
On Tue, Oct 6, 2009 at 8:36 AM, sangram wrote:
>
> hi,
>
> i have used previous version of jquery autocomplete p
Muhammad Arif wrote:
Hello All:
I'm trying to close a browser window.. using
windows.close().. but its not working...
so can you help me.
Regards
I think it's window.close(), and i think you can only do this in popups.
Jonathan
--
Jonathan Vanherpe - Tallieu & Tallieu NV - j
$("[id$=" + b1 + "] input").toggle();
- Richard
On Tue, Oct 6, 2009 at 1:52 AM, hsfrey wrote:
>
> In this line of code, I'm looking for a div whose Id is in variable
> b1, and which has an input button field whose value is "Show" or
> "Hide", and this line is to toggle those values.
>
>
> $(("[i
ibnusarnan ha scritto:
hello alll, Im a newbie in jquery,
I just one know and angered with jquery, why and how the jquery code
is:
$.ready
using dollar sign, anyone can explain me about this (using dollar sign
in javascript) and please give me an sample example of this for
clearest explanatio
hello alll, Im a newbie in jquery,
I just one know and angered with jquery, why and how the jquery code
is:
$.ready
using dollar sign, anyone can explain me about this (using dollar sign
in javascript) and please give me an sample example of this for
clearest explanation.
thanks,
IBS
In this line of code, I'm looking for a div whose Id is in variable
b1, and which has an input button field whose value is "Show" or
"Hide", and this line is to toggle those values.
$(("[id$="+b1+"]") input).attr(value, attr(value)
=="Hide"?"Show":"Hide");
This doesn't work, and Firebug gives
Hello All:
I'm trying to close a browser window.. using
windows.close().. but its not working...
so can you help me.
Regards
Hi,
I have some forms with radio and/or checkbox.
I'm using the jquery form pluggin to send my forms with ajax. All is
correct with FF but with IE6 (IE7 ?), the modifications of the radio
or checkbox are no sended. Only the initial state is send.
Is somebody can help me ?
Thanks
Gerard
This issue observed in Mozilla FireFox 3.5.3
I am creating a simple navbar menu with 1 level deep submenus.
The menu with "current" doesn't get hidden when another menu is
displayed.
In the following example when mouse over on "m2", along with m2's
submenus rest of m1's submenus were also visibl
I was trying out some sample script while trying to learn JQuery and
it appears that my script works fine under JQuery 1.2.6. It does NOT
however work on 1.3.2. Can anyone identify what the problem is?
$(document).ready(function() {
$("#ddlStates").change(function() {
$
hi,
i have used previous version of jquery autocomplete plugin.
now i wanted to use the latest version of the plugin, but i am unable
to find the source anywhere!
i have checked the site, the link to SVN is also not working. where
can i get the plugin and instructions to use it ?
any help?
re
$(function(){
$("img").hover(
function(){
src = $(this).attr("src");
var newSrc = src.replace(/.png/, "-hover.png");
$(this).attr("src",newSrc);
},
function(){
I mean not like that...
I mean what ever the src value I want to add hover when it hover
and when mouse out I want delete that hover..
and when hover that image I want became like this
and when mouse out that image became
On Sep 28, 9:38 pm, Liam Potter wrote:
> $(function(){
>
Hi,
I think there is a bug in autocompleter, when you use extraParams.
The
cache logic is just wrong because it takes extraParams not as a part
of cache key for lookup, so when you issue a request for "a term"
with
any parameters, the second search for "a term" will return cached
results regardles
one of the carousel plugins could do it for you.
http://sorgalla.com/jcarousel/
http://www.gmarwaha.com/jquery/jcarousellite/
depending on your project specific needs.
best.
Jon
2009/10/6 Kevin Jones
>
> bump
>
> On Oct 1, 10:43 am, Kevin Jones wrote:
> > http://www.nd.edu/
> >
> > Their ho
Hello,
When using the option:
activation: 'click',
mouseOutClose: true,
the mouseOutClose does not work: (
Is this a bug?
FYI: I looked into the source of the autocomplete script and I think
I'm gonna try to extend it myself.
Thank you Jonathan.
That worked!
Rui
On Oct 1, 5:24 pm, "Jonathan Vanherpe (T & T NV)"
wrote:
> well, if you don't underline your links, you only really needed to
> define text-decoration: none once in your css. If you add
> .underlinelinks before whatever the selector you used for that, it wil
Hi all,
I've have been struggling a hole day around this and I can't find a
proper solution :(
I have a div A that when I mouse hover creates and appends in run time
another div B inside with an higher z-index. This new div B is a info
div that I want to show within the limits of the div A. When
As far as I know one of them is not supported in IE.
I can't find the explanation that I found when I first started looking
at capturing user key presses.
On Oct 6, 8:01 am, "David .Wu" wrote:
> keyCode and which will get the same value, so anything different?
>
>
> $(function() {
> $(
1 - 100 of 103 matches
Mail list logo