I've worked with Safari quite a bit. If that's the problem you're
having then it's a refresh issue. Sometimes Safari will "forget" to
refresh the page layout, even though you've just made changes to the
classes of elements.
To get around it do something that changes the actual structure of the
DO
Just a follow up... using browserCam, I was just looking at the page
above using Safari 2.0.
Indeed, the first 'next' button throws up a blank screen... but if I
resize the window, the actual second page of the form appears again.
Strange. The fact that simply changing the browser window size mak
gordon - did you find out anything about safari js/jquery bugs in
general?
I am up against a similar issue.
On Sep 25, 9:26 am, Gordon <[EMAIL PROTECTED]> wrote:
> I really need a hand with my IT Assistant project (http://www.pcwb.com/
> assistants/) and an issue inSafariversion 2. As it works
Hey all,
I am trying to get my jqAlbumParser plugin updated to work with 1.2.1 and
coming up short when communicating with Picasa.
Here is the url for your view
http://www.benjaminsterling.com/experiments/jqAlbumParser
When you click on Flickr you will get an alert "done", but when you click on
p
I am currently writing a similar library but using jsmin. I would
love to take a peek at the code.
On Sep 17, 9:08 pm, "Jeffrey Kretz" <[EMAIL PROTECTED]> wrote:
> I've spend the last few days building a .NET implementation of a gzip
> packer. It accepts an argument like either of these two:
>
(cross post with UI Group - are same members are in both?)
Hi group -
I've built a set of pages on this site, creating multi-step forms
using Joern's accordion plugin
( http://bassistance.de/jquery-plugins/jquery-plugin-accordion/)
Everything's working great - except in Safari, where it falls a
That should work swimmingly. I dunno why it didn't occur to me. Load
it into the jqm div and then display the jqm as normal, without any
sorta jqm ajax call.
Thanks!
will
On Oct 1, 2:19 pm, Jack Killpatrick <[EMAIL PROTECTED]> wrote:
> I haven't used it yet, but if I've read things correctly,
Hey Adam,
Glad you found that! :-) Klaus's version is a lot simpler, though,
so you might want to try that instead. At press time, the :nth-child
() didn't allow for something like :nth-child(3n) or :nth-child(3n
+2); it just took a single number, like :nth-child(3). It's much more
robus
I think that is my fault; it was a patch I submitted way back at the
beginning of last year. But you're right, $(undefined) shouldn't select the
document, only $() with no arguments at all should. Want to file a ticket on
it?
The offending code is at the beginning of jQuery.fn.prototype:
//
> From: James Dempster
>
> Much nicer to split the lines making it more readable.
>
> $(this).parent().append([
> "",
> " "x",
> ""
> ].join(""));
Also, once you're using .join, you don't have to use + inside it; you can
use comma for all your string concatenation. And t
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 concepts.
http://ejohn.org/blog/javascript-engine-speeds/
On Oct 1, 12:48 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote:
> David Pollak schrieb:> although I had to rewrite all the $ references to
> jQuery so I could fit Scriptaculous, jQuery, and BlockUIin the same browser.
>
> Why that? BlockUI uses a handy trick to be able to use $ while not
> relyin
Hey folks,
I'm pleased to announce the full service of Paste Monkey is now
running at http://pastemonkey.org. This is a collaborative pastebin
developed in CakePHP 1.2, and running AJAX with jQuery.
It is still in the beta stage, but very functional, with features such as:
* Use of Live Query
Adam Stacoviak wrote:
I'm trying to find out how to add a class to every third occurrence of
an element.
Basically, I have a DIV with an undefined number of DIVs inside of it,
and I want to add a class to every third DIV
Try:
$('div:nth-child(3n)').addClass(...);
--Klaus
Forgive me for a non-jquery related post, but I'm hoping someone on here
might be knowledgeable enough with Javascript to answer it. I see lots of
post on here regarding optimization for DOM traversing and think it's funny
since most people gave up spending much time worrying about CPU & memory
bo
On Mon, 2007-10-01 at 14:16 -0700, [EMAIL PROTECTED] wrote:
> But for a question a little off topic. Looks like the only way for
> the editor to produce valid code is to use the doctype 'XHTML 1.0
> Transitional', there is some weirdness (align attr. on images) with
> the wysiwyg editor with flo
I figured it out...I just needed to do a bit more reading to my Learning
jQuery book!
var classNames = {
0: 'first',
1: 'second',
2: 'third'
};
$('#section_wrapper_div .section_item').each(function(index) {
$(this).addClass(classNames[index % 3]);
});
On 10/1/07, Adam Stacoviak <
Thank you very much. That is helpful--I think using the event.pageXY
and the Dimensions plugin I should be able to write something that
does what I'm looking for.
Thanks again.
Jamie
On Oct 1, 4:29 pm, "John Resig" <[EMAIL PROTECTED]> wrote:
> The only set of X/Y properties that jQuery supports
Jörn Zaefferer escreveu:
>
> Gerson Goulart schrieb:
>> Hi all!
>>
>> I'm not a programmer (and don't speak English), but I'm trying to do
>> both. =D
>>
>> I'm looking for a simple solution to do a simple tree menu like the
>> Windows Explorer during some days. All solutions I find are terible,
>
Hi all. Sorry for the OT, but it IS jQuery related.. :)
I'm giving a presentation at COSSFEST (http://cossfest.ca/schedule) at
the end of the month. The title of the presentation is "Rapid Web 2.0
JavaScript Development with jQuery". I'm in the process of building the
presentation, and thou
Hi,
I would like to use jQuery to add a row with form fields of a table to
the end of the table, the idea is to duplicate the previous one it
with all of the form fields (drop downs, input fields, hidden fields,
etc.) changing the input ID of each input, clearing the input values
and adding a "D
I can add my support to Jorn's treeview plugin. We're using it and it's
working great. Our needs are for a simple text navigation tree, but
will later grow to include images/icons with the links. Some of the
recent changes to the treeview (in SVN) solved our navigation problems
with a "navi
I'm trying to find out how to add a class to every third occurrence of
an element.
Basically, I have a DIV with an undefined number of DIVs inside of it,
and I want to add a class to every third DIV
Thanks. I love expanding my horizons. :-)
On 10/1/07, Robert Koberg <[EMAIL PROTECTED]> wrote:
>
> On Mon, 2007-10-01 at 12:12 -0700, Lee Hinde wrote:
> > Hi;
> >
> > I have questions about selectors and .each.
> >
> > Given this result:
> >
> > > recordsinselection="2" size="2" sortfield="" tab
unsubscribe me please
FrankTudor wrote:
Is there a place that I can see the math functions available?
Frank
That's POSJ (Plain Old Simple JavaScript), no need for jQuery here, for
example:
var max = Math.max(1, 2);
--Klaus
Google for 'javascript reference Math object'.
FrankTudor wrote:
>
>
> Is there a place that I can see the math functions available?
>
> Frank
>
>
>
--
View this message in context:
http://www.nabble.com/jquery-math-functions--tf4551431s27240.html#a12989165
Sent from the jQuery General
if(!$.browser.msie){
.//bug out
}
FrankTudor wrote:
>
>
> I have a tool that only operates under IE
>
> So all other browser users get an alert here is my code...but it
> doesn't work...
>
> Can someone get me straightened out?
>
>
> $(document).ready(function()
> {
> if($
Gerson Goulart schrieb:
Hi all!
I'm not a programmer (and don't speak English), but I'm trying to do
both. =D
I'm looking for a simple solution to do a simple tree menu like the
Windows Explorer during some days. All solutions I find are terible,
in my opinion (including dtree ) :p
I decided
This just popped up on digg, and i thought it might interest some of
you:
http://code.trymbill.is/index.php/2007/10/01/compress-javascript-gzip/
It presents a different way of compressing javascript code.
Is there a place that I can see the math functions available?
Frank
On Oct 1, 9:06 pm, Guy Fraser <[EMAIL PROTECTED]> wrote:
> Couldn't you just use this:
>
> http://jquery.com/plugins/project/elementReady
Not when there are more than a few buttons on the page. This plugin
works fine if your button has a particular Id attached to it, some of
the pages we were wo
I have a tool that only operates under IE
So all other browser users get an alert here is my code...but it
doesn't work...
Can someone get me straightened out?
$(document).ready(function()
{
if($.browser.[safari, opera, mozilla])
{
$( fun
I got it figured out...thanks for the reply
On 10/1/07, Benjamin Sterling <[EMAIL PROTECTED]> wrote:
>
> Frank, are you using http://trentrichardson.com/Impromptu/?
>
> Or are using using the basic prompt command?
>
> If you are using the plugin, you need to set up a call back that will
> handle y
I haven't used it yet, but if I've read things correctly, you can use a
selector in a native jquery .load() call, which would get the div from
the file on the server. See here:
http://docs.jquery.com/Ajax/load#urldatacallback
example snippet:
$("#links").load("/Main_Page #p-Getting-Started
Thanks for the comments people, I know this idea wont set the world on
fire, as Joel mentioned, it fits a niche (in a the true sense of the
word).
The independent file manager with upload is almost done which I will
add in shortly.
But for a question a little off topic. Looks like the only way
I have a webcam, currently uploading images as per motion detection.
The latest image is always called Webcam.jpg, the next most recent is
Webcam1.jpg, etc.
I'd like to show the latest few, and replace each with the latest version of
the file every minute or so.
I can simply update the src (using
Hi all!
I'm not a programmer (and don't speak English), but I'm trying to do
both. =D
I'm looking for a simple solution to do a simple tree menu like the
Windows Explorer during some days. All solutions I find are terible,
in my opinion (including dtree ) :p
I decided to do a very simple tree m
Oh my God! I forgot of introduce myself :p
My name is Gerson Goulart, I am a brazilian designer.
I signingned this list because I want a lot learn javascript and I
liked very much the jQuery library (that I discovered yesterday) :D
I know something about HTML, CSS, web-standards, etc. and I'm h
I am having a problem with jQuery (2.1.1).
I have a set of variables defined and depending on circumstances some
may be undefined.
A simple stupid example:
var element_id;
var the_element = jQuery(element);
the_element.click(function () { alert('Hello World'); });
The result of this
After working on this all weekend, I finally came to a satisfactory
outcome that is as simple as possible using the concept I asked about
above.
I ended up using Matthias Bank's getUrlParam (amazingly simple and
well-done) plugin:
http://www.mathias-bank.de/2007/04/21/jquery-plugin-geturlparam-ve
Hello!
Can I load the jQuery library in my jshArea? What is the best way?
(thanks)
Background:
type this code in your browser address bar:
javascript:function fun(){ var win = window.open(document.location);
win.document.write("jshArea - JavaScript Hacking
Area by Davide Rognonialert(opener)")
Kevin Scholl wrote:
> http://jquery.com/plugins/project/toggleval
>
http://scott.sauyet.com/thoughts/archives/2007/03/31/overlabel-with-jquery/
Remy Sharp wrote:
> I've recently been working on a project where the page is complex
> enough that the DOM would not have loaded before the user had spotted
> our 'big red button' - and clicked away.
>
Couldn't you just use this:
http://jquery.com/plugins/project/elementReady
One thing I learnt recently is that just because you can use jQuery
doesn't mean the innards of your plugin should be one big chain of
jQuery methods.
For example, see Scott's Overlabel blog page...
Scott's original version used plain JS to do things, however it was a
bit difficult to read:
On Mon, 2007-10-01 at 12:12 -0700, Lee Hinde wrote:
> Hi;
>
> I have questions about selectors and .each.
>
> Given this result:
>
> recordsinselection="2" size="2" sortfield="" tableid="2"
> tablename="Person">
>
> 3
> 1
> Molly
> Hinde
> Adult Supervision
>
I know we've been discussing rounded corners a lot, but I just found a
recent solution for anti-aliased rounded corners using jQuery. These
guys do a pretty good job:
http://blue-anvil.com/archives/anti-aliased-rounded-corners-with-jquery
Hope it's helpful,
Matt
PS: Make sure to double check o
On 10/1/07, Lee Hinde <[EMAIL PROTECTED]> wrote:
> On 10/1/07, Lee Hinde <[EMAIL PROTECTED]> wrote:
> > Hi;
> >
> > I have questions about selectors and .each.
> >
> > Given this result:
> >
> > > recordsinselection="2" size="2" sortfield="" tableid="2"
> > tablename="Person">
> >
> >
The only set of X/Y properties that jQuery supports is pageX/pageY,
which, I think, will help you out. More information:
http://docs.jquery.com/Events_%28Guide%29#event.pageX.2FY
--John
On 10/1/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
> I want to access the event properties layerX and
I think this it what your trying todo...
$(this).parent().append(["", "x", ""].join(""));
Much nicer to split the lines making it more readable.
$(this).parent().append([
"",
"x",
""
].join(""));
hope this helps
On Oct 1, 5:29 pm, Matt <[EMAIL PROTECTED]> wrote:
> Hi everyone,
On 10/1/07, Lee Hinde <[EMAIL PROTECTED]> wrote:
> Hi;
>
> I have questions about selectors and .each.
>
> Given this result:
>
> recordsinselection="2" size="2" sortfield="" tableid="2"
> tablename="Person">
>
> 3
> 1
> Molly
> Hinde
> Adult Supervision
David Pollak schrieb:
although I had to rewrite all the $ references to jQuery so I could fit
Scriptaculous, jQuery, and BlockUIin the same browser.
Why that? BlockUI uses a handy trick to be able to use $ while not
relying on the global variable. Details:
http://docs.jquery.com/Plugins/Au
Nice looking site, Jay...
Rick
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Jay Salvat
Sent: Monday, October 01, 2007 12:26 PM
To: jQuery (English)
Subject: [jQuery] [SITE SUBMISSION] Kuantic.com
Hi,
My work on my company's website, using l
Hi Jay,
Can you provide a description of the site?
Rey
Jay Salvat wrote:
Hi,
My work on my company's website, using lot of jQuery and some homemade
plugins :)
http://www.kuantic.com/
Jay.
Hi,
You can use standard DOM properties and method. For example, since you
have an XMLDocument you can ask for the root element:
var myRootXMLElement = myXMLDoc.getDocumentElement();
or get element by their local name:
var allParas = myXMLDoc.getElementsByTagName("p");
Check out:
http://www.w
Arrix,
Thanks for the reply. So, in an ajax response snippet, does it make
the most sense just to make javascript calls directly. Could there be
an issue with the DOM in the response snippet not being fully loaded
before the script functions are called. I tried doing something like
this in the
Hi everyone,
I have been using FlyDOM, and am trying to convert some of that code
to use the jQuery append, after reading what Mike wrote about better
performance. I am trying to dynamically insert some attributes.
However I'm getting a syntax error, so I think I'm not understanding
something simp
Danjojo wrote:
> I am trying to clear an input search box's value.
>
If you are just wanting to display a prompt inside the search box, eg.
"search text", that will dissapear when the box receives focus, use the
overlabel plugin...
http://scott.sauyet.com/thoughts/archives/2007/03/31/overl
Hi,
My work on my company's website, using lot of jQuery and some homemade
plugins :)
http://www.kuantic.com/
Jay.
I want to access the event properties layerX and layerY. I found that
these only work the way I would have expected in Firefox. In IE I need
to use the offsetXY properties to get what I want, but then in Opera
and Safari these properties are giving me the XYoffset values of the
elements within the
Howdy
Just a quick question: I have a reasonable understanding of CSS and
HTML - but am very much a 'noob' when it comes to the mighty JQuery
(but i'm getting there - slowly!) - I was wondering if anyone has any
ideas on creating the reverse drop down animation on mouse out? i.e.
rollover the men
Hi thnks for your reply, I am using ie7. The issue is occuring just
after a slide out, seems to me that the div is actually reappearing
for half a second just afterwards... I have no idea why is so, I have
seen other examples using the slide out effect without seeing the same
issue that I see on m
I have the latest jQuery version installed. And the problem occurs on
the stable 2.0 version of Safari on Mac.
Too bad. Anyone else that has any idea?
On 1 okt, 05:26, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote:
> You should update your jQuery version...
> i had version 1.1.3.1 and it didn't w
Howdy,
Yes... it's me again... the guy who always complains about stuff.
I love the base jQuery code. It feels very right. And it has a very
functional flavor which suits Scala and lift very well.
But I need some functionality on top of the base jQuery stuff. I need
drag and drop, modal dial
Sorry Joel, I should point out what version of Internet Explorer I'm
using too - It is Internet Explorer 6, with Windows XP sp2.
I have been able to find my problem - internet explorer with its
dastardly cache!
The link above points to one with two working dropdowns, on project
and company.
The
Hi,
Just to let you know, if it can help someone else, i found this bug with
ui.slider.js on IE6 (it's a simple syntax error but it obviously causes the
script stopping executed):
http://dev.jquery.com/ticket/1762#preview
cheers
--
Matthias ETIENNE
hello dear jquery community.
recently i've run into a really strange problem when parsing xml
received via ajax;
XMLstructure:
...
the xml file is well structured as i've checked it a couple of times
myself.
now the code:
$.ajax({type: "POST",
url: loc
I'M on IE7. It seems like the flashing occurs right after the slide up
function has been called, after it slides, it flashes very fast, but
you should be able to see it... I have seen other examples of sliding
effects that are not doing this... So maybe I am doing something
wrong...
Thanks
Hi;
I have questions about selectors and .each.
Given this result:
3
1
Molly
Hinde
Adult Supervision
2
1
Lee
Hinde
Night Custodial Staff
what's the best way to iterate through to build table rows from
Greetings jQuery Land,
I'd like load a specific part of another page into a jqModal box.
like:
$('#mybox').jqm({ajax: 'included.php#this_particular_div_only'});
Any hope for me and mine?
Thank you,
Will
Firebug is great for this sort of stuff; it'll show you exactly what
is coming back.
http://www.getfirebug.com/
On 9/24/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
> Hi,
>
> I've been trying to getsome XML data out of a jQuery AJAX request and
> I'm having trouble. Problem is, I can't re
Hey folks,
In my app, what I have on pageload is a .getScript() that loads in the
Ajax API for recaptcha (as can be seen at
http://pastemonkey.digitalspaghetti.me.uk).
I also use blockUI on this site, and I have hit a snag, in that if the
getScript fails for whatever reason, it doesn't time out
http://caimansys.com/painter/
^-- This isn't build on jQuery, but it might give you something to start
with.
On 9/30/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
>
> Hi,
>
> I'm not able to find a good (preferably open source) paint-like
> drawing tool & thought maybe there is one built on
asp.net controls should not interfere with the forms plugin.
Do you have a demo page we could take a look at? Right not Im not even 100%
sure what your problem you are having.
Sharique Farooqui wrote:
>
>
> Right now I'm not using asp.net Ajax.
> I'm using some asp.net controls on it.
> Is t
What's new:
http://labs.adobe.com/wiki/index.php/AIR:Developer_FAQ#What_are_some_of_the_features_included_in_Adobe_AIR_Beta_2.3F
* System Tray icon/Dock Bar Bounce
* Synchronous database API
* Native menus
* Drag and drop enhancements including bitmap support
* Windowing impr
Thanks for your work on your plug-ins and documentation, Ben. I know it's
very *easy* to forget what the "$" means or to get the path wrong for
a js file link, or even to forget to include a link at all!
When introducing jQuery and plug-ins, they key is *baby steps* all the way.
Like a "j
Right now I'm not using asp.net Ajax.
I'm using some asp.net controls on it.
Is this causing problem?
On Sep 29, 5:15 pm, seedy <[EMAIL PROTECTED]> wrote:
> I've never used the update panel, so im not sure of all its functionality.
> The forms plugin should let you submit a form through an ajax r
I have this HTml code
Select
City list
here
and a php file (citylist.php)which return list of cities.
What I want is when I click City list textbox must be changes to
select list, with options from citylist.php.
One massive tip for developing plugins, is to make them futureproof
and compatible with the jQuery.noConflict() is to develop your plugin
inside a closure:
(function($){
...
})(jQuery);
This means you can use. $ inside your plugin and never worry about it
not working with jQuery. Since I u
Rick,
I agree with you and as far as my plugins and myself are concerned, it is a
learning experience for me also. Almost all my code prior to coming upon
jQuery has been "for my eyes only" and never thought twice about someone
else needing to understand what I heck I am trying to do. But since
d
If anyone cares, I think my problem here was that I didn't have the latest
code for thickbox (even though, the version numbers were the same...:o/)
Anyway, I found that my tb_position function looked like this:
function tb_position() {
$("#TB_window").css({marginLeft: '-' + parseInt((TB_WIDTH / 2)
Good morning, all.
After seeing that some who are new to jQuery wrestle
with trying to get something working, I had the idea that perhaps
we need a "Quick Start Guide" for jQuery generally and
plug-ins specifically.
What experienced users can grapple with the sometimes overwhelming
amou
See, its was from watching all that x video
On 10/1/07, spinnach <[EMAIL PROTECTED]> wrote:
>
>
> you should see x then :) ..
>
> and sorry, but the error seems to be related to IE WebDeveloper, when
> typing the code in the console it didn't work.. when i put it in the
> head
you should see x then :) ..
and sorry, but the error seems to be related to IE WebDeveloper, when
typing the code in the console it didn't work.. when i put it in the
head of the html file, it worked.. so thanks for your time, but it seems
the problem was not related to jquery after a
WOW... is x better then xxx :)
Two more questions:
Have you tried Giovanni's suggestion and does that give you the same error?
Can you post a live example?
On 10/1/07, spinnach <[EMAIL PROTECTED]> wrote:
>
>
> it's without any plugins or other code on the page, i have IE
> WebDeveloper v2 to
Roso,
If you want assistance on a plugin from someone that's volunteered their
time to build it, document it and post it, I'd suggest toning down your
messages and politely asking for help. Mike Alsup, jQuery team member
and author of the Form plugin, is a really cool and understanding guy
a
it's without any plugins or other code on the page, i have IE
WebDeveloper v2 toolbar installed, and when i just type that in the
console i get this error:
Error Expected ')' http://x.com/ (line 1)
dennis.
Benjamin Sterling wrote:
Spinnach,
That should work, I am using just that in
I might be better to ask for support concerning a specific problem,
this is a very helpful forum. Besides I think Mikes site and plugins
one of the best displayed and documented, I´m surprised that you have
problems with them.
On Oct 1, 6:17 am, roso <[EMAIL PROTECTED]> wrote:
> The jQuery Form
Spinnach,
That should work, I am using just that in a number of plugins, is there any
other code on the page? Can you post the error?
On 10/1/07, Giovanni Battista Lenoci <[EMAIL PROTECTED]> wrote:
>
>
> spinnach ha scritto:
> >
> > this returns an error in IE7, works fine in firefox, is this a bu
Frank, are you using http://trentrichardson.com/Impromptu/?
Or are using using the basic prompt command?
If you are using the plugin, you need to set up a call back that will handle
you true, false.
If you are using the prompt command, I would suggest you use the confirm
instead (http://www.tiza
I have a jquery script that gives the user a prompt and a choice to
make sure they want to delete a value from a datasource.
Here is my code...
It prompts funny...and it goes ahead and processes anyways even if you
select cancel..
Can someone fix me up here?
$(document).ready(function
I'm having this same problem. I have a very long list of items that
are each clickable. When the user clicks on one it pops up a thickbox
that allows the user to edit that item. However, when the user clicks
on items far down in the list, they appear to get no thickbox. After a
little investigatio
spinnach ha scritto:
this returns an error in IE7, works fine in firefox, is this a bug or
something i overlooked ?
var $div = $('');
Try
var $div = $('');
$div.addClass('fileinputs');
Giovanni
this returns an error in IE7, works fine in firefox, is this a bug or
something i overlooked ?
var $div = $('');
dennis.
For those not aware, slickdeals is one of the most popular deal news
sites around.
>From what I can tell, they are primarily using jquery in their
toggling of detail on the individual deals and the days.
http://www.slickdeals.net/
It really depends on the solution you're working on. In this
particular case, it would odd if the button had just appeared, and on
some pages there's a button for each row on a large table of data.
Disabling it first then enabling is a better approach, but the
solution I went for, still register
On Oct 1, 2007, at 9:36 AM, Danjojo wrote:
Thank you! IE 7 throws an error "something about not supporting an
object"..
FireFox is happy and FireBug does not display an error.
It might work better to use .val('') instead of .attr('value','')
Now if someone were to type in a search word
I've seen this happen now and then since I've been on this list (about 4
months). Not every day, more like once or twice a week. It seems like the
whole list gets clogged for a while (2-6, occasionally 8+ hrs), then a flood
of messages all come in at once. So it's not that every email to the list
t
http://jquery.com/plugins/project/toggleval
On Oct 1, 8:38 am, Danjojo <[EMAIL PROTECTED]> wrote:
> I am trying to clear an input search box's value.
>
> When the page loads the value is set. I.e.:
>
> style="width: 100px;" value="Search term or part #">
>
> I want to set it to blank when the u
1 - 100 of 129 matches
Mail list logo