On Feb 15, 5:08 am, "[EMAIL PROTECTED]"
<[EMAIL PROTECTED]> wrote:
> Thanks, but that didn't work. I have
>
>
> $(function() {
> $('#tabcontent > ul').tabs({click: function(clicked,
> toShow, toHide) {
> alert(toHide.title);
>
On Feb 15, 3:28 am, "[EMAIL PROTECTED]"
<[EMAIL PROTECTED]> wrote:
> Thanks, but let me throw in an additional wrinkle. Let's say there
> are three tabs, with titles "Properties", "General", and "Misc" and
> you are on tab "General" and then click on tab "Misc". The below
> functionality would
On Feb 15, 12:19 am, "Brian Cherne" <[EMAIL PROTECTED]> wrote:
> Actually, the += and -= are perfectly legit for the animate method. They
> allow you to animate a property relative to its current
> value.http://docs.jquery.com/Effects/animate
ooops, I'm sorry I didn't know that :)
On Feb 15, 4:06 am, FrenchiINLA <[EMAIL PROTECTED]> wrote:
> if you use the click event of tab it pass 3 parameters Tab clicked,
> Tab toShow, TabtoHide so you can write something like
> var $tabs = $('#foo).tabs({click: function(clicked, toShow, toHide) {
> var title = toHide.title;
> .
>
> }
This might be helpful.
http://jquery.open2space.com/node/55
Glen
On Thu, Feb 14, 2008 at 4:38 PM, Jonathan <[EMAIL PROTECTED]>
wrote:
>
> Maybe I'm missing something, but how would I remove a jQuery function
> after it's no longer in use? I'm using an ajax driven site, so the
> page never is rel
Interesting. I've never thought of specifying image
size in em's. The problem of image degradation would
still be an issue, I'm sure, since an image may be
specified for display in em's in a browser, but would still start
its life in pixels (if it's not a vector graphic), unlike text, which is
Thanks, but that didn't work. I have
$(function() {
$('#tabcontent > ul').tabs({click: function(clicked,
toShow, toHide) {
alert(toHide.title);
}
});
});
Docum
I switch between jqModal and Thickbox 3.1 for different apps, slightly
different needs. Thickbox works well for forms, looks nice, while jqModal
is much snappier.
SEAN O
_
http://www.sean-o.com
Nazgulled wrote:
>
>
> Hi,
> There are so many plugins for modal dialogs that I don
if you use the click event of tab it pass 3 parameters Tab clicked,
Tab toShow, TabtoHide so you can write something like
var $tabs = $('#foo).tabs({click: function(clicked, toShow, toHide) {
var title = toHide.title;
.
});
On Feb 14, 6:28 pm, "[EMAIL PROTECTED]"
<[EMAIL PROTECTED]> wrote:
>
Rick, I have not gotten into it too much because it has not been a
requirement, having just the alt/title tags is usually enough, but there has
been talk over at the EPA accessiblity testing group to require setting
width and height of images using EM instead of PX. This is so that if a
user bumps
What does your friend do about images? Enlarging the text would be a start,
but if I were having great difficulty viewing the screen, I would want a
solution that allows me to view images, as well.
Rick
> -Original Message-
> From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Hi, This isn't working but its possible I'm doing something wrong.
Is this expression
$('input[name*=file]')
supposed to give me an array of all input elements with names that
begin with "file"? I absolutely have hidden input elements on my page
with names like "file123" and "file555" but the
Thanks, but let me throw in an additional wrinkle. Let's say there
are three tabs, with titles "Properties", "General", and "Misc" and
you are on tab "General" and then click on tab "Misc". The below
functionality would get called, even though it is only supposed to be
called if you are leaving
Regular expressions would be the answer
var rgx = /^[A-Za-z]+$/;
if (rgx.test($("#TextBoxID").val())) {
// Valid
}
else {
// Invalid
}
Maybe I'm missing something, but how would I remove a jQuery function
after it's no longer in use? I'm using an ajax driven site, so the
page never is reloaded, so do all the jQuery functions I define just
stay there? Does this cause memory issues? Is there a way to remove it
after it's not longer
"Greybox Redux" (http://jquery.com/blog/2006/02/10/greybox-redux/)
Pros:
- Written by the man himself
- Handles static content as well as external links (via iframe)
- Code isn't very long and is easy to modify (for instance, i didn't
like the "click outside the modal to close it", so i coded an
Hi,
There are so many plugins for modal dialogs that I don't know which
one should I use and/or which one is the best... I mean, if there was
only one plugin of this type including all the features from all the
modal plugins, that would be cool.
Which one do you think it's the best and why? Care
hi,
indeed your users need to have flash, otherwise the plugin should
degrade back to the classic html form. Isn't it doing so?
i haven't checked that since a few updates, i may have broken that .
I'll check that tommorrow just in case.
On Thu, Feb 14, 2008 at 10:22 PM, [EMAIL PROTECTED]
<[EMAIL
On Feb 14, 9:25 pm, "[EMAIL PROTECTED]"
<[EMAIL PROTECTED]> wrote:
> Thanks, Klaus. I only want to run this form validation if a user is
> leaving the tab with a.title = "Properties". How do I screen for that
> prior to executing the function? - Dave
var $tabs = $('#foo').tabs().bind('select.ui
'input[name*=file][value=' + val + ']:hidden'
On Thu, Feb 14, 2008 at 3:33 PM, [EMAIL PROTECTED] <
[EMAIL PROTECTED]> wrote:
>
> Hi,
>
> How do I search the DIV, "myDiv" for a hidden input field whose name
> begins with the word "file" and whose value is equal to the value
> contained in the vari
thanks for the reply's!
I've taken the advise and tried to implement the minify method but
having some difficulty. I've downloaded and extracted the minify.php
file to my root folder and then called for the files the way the usage
guide explains. But it doesn't work. Am i supposed to have more th
Hi,
How do I search the DIV, "myDiv" for a hidden input field whose name
begins with the word "file" and whose value is equal to the value
contained in the variable "myVar"?
Thanks, - Dave
Actually, the += and -= are perfectly legit for the animate method. They
allow you to animate a property relative to its current value.
http://docs.jquery.com/Effects/animate
I believe the "margin-left" is the throwing it off. Somewhere in the docs it
mentions hyphenated properties should be writt
ScrollTop is a function from teh dimensions plugin. I found the
$(window).scrollTop(); works, still curoius why it does not work for
functions.
polyrhythmic wrote:
>
>
> AFAIK scrolltop is an element property, _not_ a function.
>
> See these for more info:
> http://www.quirksmode.org/viewpo
1) Make sure the container's height isn't set by some other script before
your ajax call. If it is, set it to auto before putting new data in there
and reset it after (if required for some reason).
2) Try using setTimeout(yourFunction, 0) in the AJAX callback function ...
where yourFunction is the
> $(".items").animate({"margin-left":"+="+amount+"px"},"slow");
> I really hope you can help me, I had never encountered this problem before.
try and take away those '+=', you wouldn't write a css rule like this
margin-left: +=300px;
:)
Hello everyone.
I wrote a simple horizontal scrolling script (similar to
http://www.panic.com/coda/ this ), but unfortunately it works only in Safari
and I have no idea why.. :-((
Here is the code:
$(function(){
var current_item = 1;
var last_item = 4;
var item_
That did it!
Thanks for the help!
On Feb 13, 2:31 am, andrea varnier <[EMAIL PROTECTED]> wrote:
> On 13 Feb, 01:11, Nick P <[EMAIL PROTECTED]> wrote:
>
> > The trouble comes when I try to append this cloned block to the end of
> > the table. If I just do:
>
> > blockCopy.appendTo("[EMAIL PROTEC
On 14 Feb, 16:59, hcvitto <[EMAIL PROTECTED]> wrote:
> data: what should i write here??? how should i send my
> arrayCheckBox values??
you have to use a map, an object containing name: value pairs.
the names will be the names of the variables that the php script is
expecting to receive.
so if t
AFAIK scrolltop is an element property, _not_ a function.
See these for more info:
http://www.quirksmode.org/viewport/compatibility.html
http://developer.mozilla.org/en/docs/DOM:element.scrollTop
http://www.learningjquery.com/2007/09/animated-scrolling-with-jquery-12
Also these sites are great g
Do you have the height() called from the AJAX callback function? Make
sure the height isn't called until the ajax callback. If that doesn't
work, perhaps the elementReady plugin would help.
Charles
On Feb 14, 11:08 am, GTinMaryland <[EMAIL PROTECTED]> wrote:
> I'm working on a layout where the
On 14 Feb, 15:57, freech <[EMAIL PROTECTED]> wrote:
> //I have problem on here:
> if ( !$(".sdComt").response ) { return false; } else { return
> true; }
ok, if I got it right, you're using a $.post call to check if the
user's input is correct or somehow acceptable, and then you app
On 14 Feb, 15:04, spaceage <[EMAIL PROTECTED]> wrote:
> andrea--thanks so much for this helpful tip.
you're welcome :)
> I would have expected some form of .each perhaps with an incrementing
> variable to use as the "multiplier" for determining the top value for
> each . If I read this correctl
i have this code
alert($('body').scrollTop());
in opera and safari, I get the correct number however IE 6/7 and FF give me
0, anyone no why this would happen? My HTML is valid so that is not an
issue, not sure what else tho would case IE and FF to me up.
--
View this message in context:
http
The newborn: http://plugins.jquery.com/project/SerialScroll
Ariel Flesler
On 14 feb, 18:04, "Chris J. Lee" <[EMAIL PROTECTED]> wrote:
> http://plugins.jquery.com/project/ScrollTo
>
> On Feb 14, 11:05 am, William Horta <[EMAIL PROTECTED]> wrote:
>
>
>
> > does anyone know a plugin or a way to sli
Hi,
Guess I'm just a sucker for punishment. Has anyone had any success
building a form that doesn't require Flash that uploads files using
jqUploader? I followed their setup instructions
http://www.pixeline.be/experiments/jqUploader/setup.php
and it didn't say anything about needing the "jqUp
Not sure how hard it would be but it would be a big project to do.
bmsterling wrote:
>
> I don't know if it would be hard to do, but there is a little more you
> need
> then just a js framework to achieve. You will need some backend
> programming, ie. asp, asp.net, php, ruby, coldfusion, etc.
I guess i should have been more specific. This is basically a rewrite of
thickbox but designed for html content and not for images and thickbox is
not really design in a way i can use it and thickbox reloaded has an IE bug
that is annoy so i thought I would rewrite the plugin from scratch and tr
i guess it shouldn't be too hard. let me know if the fix i suggest
didn't work and i'll send you updated code for what you require.
On Thu, Feb 14, 2008 at 9:01 PM, [EMAIL PROTECTED]
<[EMAIL PROTECTED]> wrote:
>
> I'll give that a go - thanks for the advice :-)
> If that doesn't work - is there
Hi Andrea,
> hi :)
Thanks alot!
> hope this helps :)
It does help so much, as well as your explanation!
I'll now try to make that hover function more generic 'cause I have
more than one input button per page
Michael
http://plugins.jquery.com/project/ScrollTo
On Feb 14, 11:05 am, William Horta <[EMAIL PROTECTED]> wrote:
> does anyone know a plugin or a way to slide divs from left to right ?
> i found some ways but only with images, and im not very good at
> programming so i coudln't do it with .animation it d
Thanks, Karl, for the clarification.
I'm working on a layout where the user clicks a button and content
loads via Ajax into content box elsewhere on the page. Right after
making that ajax call I try to get the height() of the content box,
but the value returned is the height of the box BEFORE the content was
loaded.
How can I get th
I'll give that a go - thanks for the advice :-)
If that doesn't work - is there a way to simply not use the iflash
plugin (e.g. manually add the object and embed tags - and if so where
do they get added)?
On Feb 12, 9:07 pm, "Alexandre Plennevaux" <[EMAIL PROTECTED]>
wrote:
> hi ipo and thanks f
Hello all,
I have a menu with a submenu using jQuery. The problem is I am trying
to get the submenu to stay open after you have clicked on the sub menu
item. So, to have the sub menu open on the active top menu place but
clear when there is no submeu.
After hours of searching, I cannot find ou
Komodo doesn't have 1.2 support yet because of the change from
scriptdoc format (http://groups.google.com/group/jquery-en/
browse_thread/thread/24f40cfd6830b6dd/), I believe. However thanks to
hard work from many jQuery group members (http://groups.google.com/
group/jquery-en/browse_thread/thread
On 14 Feb, 15:26, Michael Schwarz <[EMAIL PROTECTED]> wrote:
> Hi everybody,
hi :)
> A) change
> src="/img/btn_search.gif"
> into
> src="/img/btn_search_hover.gif"
> onMouseOver and back onMouseOut
$('.hoverThis').hover(function(){
$(this).attr('src', '/img/btn_search_hover.gif');
}, fun
Thanks, Klaus. I only want to run this form validation if a user is
leaving the tab with a.title = "Properties". How do I screen for that
prior to executing the function? - Dave
On Feb 14, 12:43 pm, Klaus Hartl <[EMAIL PROTECTED]> wrote:
> Try the select event. If the handler for that event ret
I don't know if it would be hard to do, but there is a little more you need
then just a js framework to achieve. You will need some backend
programming, ie. asp, asp.net, php, ruby, coldfusion, etc.
On 2/14/08, Cloudream <[EMAIL PROTECTED]> wrote:
>
>
> is it hard to do it? jQuery is quite easy t
Packing is probably not the fastest method, unless you're in a low-
bandwidth situation, due to the overhead of decoding the packed script
after download. I would recommend Minifying your JS -- the most well
known is probably JSMin (http://javascript.crockford.com/jsmin.html)
but there's a number
The first part of the ternary is going to evaluate as a boolean (true or
false). What you've actually got in there is a jQuery object with a load
function, which exists (notice, you're referencing it as a variable, not
calling it) and therefore the true part of your ternary is evaluating each
time.
is it hard to do it? jQuery is quite easy to use. Try it yourself :)
On Feb 15, 1:47 am, KONIU <[EMAIL PROTECTED]> wrote:
> Hi,
>
> Does anybody know an ajax email client like this one ona
> dojohttp://dojotoolkit.org/demos/email-using-1-0??? but in Jquery.
No sweat. I had every confidence you'd find the problem wherever it was.
Good to hear it wasn't in the plugin though. :-)
Cheers!
On Thu, Feb 14, 2008 at 2:13 PM, Klaus Hartl <[EMAIL PROTECTED]>
wrote:
>
> Scratch that, it was just me! Sorry Mike, I was afraid I couldn't use
> this excellent
Scratch that, it was just me! Sorry Mike, I was afraid I couldn't use
this excellent piece of work...
--Klaus
Hi Jörn,
I can't seem to make it work. If you have a look at e.g "http://
www.ehs.sfu.ca/general/categories/C16/" You'll see it works
beautifully up to that point.
If you click on a further article on the right hand side navigation
(i.e Back Care:http://www.ehs.sfu.ca/general/details/back_care/)
Wow, I really appreciate both of your quick replies!
Benjamin, I have seen yours & Richard's contributions - knowing I'm
not all alone is what's keeping me motivated ;)
>From the accessibility plugin's demo page, it serves an accessibility
reminder. Which is a start :)
@JMoore - my point is thi
Try the select event. If the handler for that event returns false you
won't be allowed to switch tabs. Something like:
var $tabs = $('#foo').tabs().bind('select.ui-tabs', function(e, ui)
{
return validateForm( $('#tabcontent div.ui-tabs-container:visible
form')[0] );
});
I assumed youhave to
Hi. I'm still struggling with this! It's supposed to load an
alternative stylesheet if images are OFF. I'm trying a zillion
different methods, but they only seem to 'half' work :(
Here's my latest attempt; I tried a ternary as a last resort ;) I
don't get a code error, but still only the 'images o
Is it just me or does the form plugin currently not work in jQuery
1.2.3?
No way...
--Klaus
Cherry,
There are quite a few of us that would agree with you, Richard Worth and
myself to name two, there is plugin but could not find it right away that
help with accessibility. Everything I do has to be 508 compliant and not
just because I feel it is the right thing to do, but I would with the
this worked great, thanks!
On Feb 13, 5:08 pm, J Moore <[EMAIL PROTECTED]> wrote:
> um, use a variable?
>
> var x = true;
> $("#container").click(function() {
> if (x) {
> $("#container").animate({"marginTop": "-=237px"}, "slow");
> } else {
> $("#container").anima
Hey Josh,
I removed the absolute positioning, but so far no luck.
Do you suspect this is strictly a css issue?
On Feb 14, 9:22 am, "Josh Nathanson" <[EMAIL PROTECTED]> wrote:
> Pete - it may have something to do with the absolute positioning of the
> returned ajax content. Try using relative pos
Hello,
I have been looking (three days) for something that will allow me to
format data from a MySql table into a tabular form and send that
report(s) to the printer, at one time, without using
"window.print()". There may be one or several reports and would like
to send this to the printer afte
Well, a pixel could be a tiny dot or it could be 5mm. So, really,
isn't saying "font-size: 11px" proportional too?
It sounds like your friend needs a better screen magnifier. Increasing
just the font size in the browser is a hack.
The one build into OS X (see 'universal access' in system prefs)
Hi,
Does anybody know an ajax email client like this one ona dojo
http://dojotoolkit.org/demos/email-using-1-0 ??? but in Jquery.
hi
i've got an array made after a selection of checkboxes and i want to
send this values to a php page to do some sql query.
i couldn't manage to pass the values via post and this is my function
var myFunction = function() {
$("#cancellaRecord").click(function() {
I use TextMate when I'm at work on a Mac, and E-TextEditor on the
Windows at home (http://www.e-texteditor.com/). It uses the same
bundles as TextMate, so it's nice to have that power on Windows.
Aaron
On Feb 13, 9:38 am, Feijó <[EMAIL PROTECTED]> wrote:
> I changed my own a few weeks ago, now I
One option is to use Dean Edward's "packer" tool:
http://dean.edwards.name/packer/
If your packed file(s) don't work, you may need to run it through
JSLint (http://dean.edwards.name/packer/) and fix it up before packing
(having proper ending semicolons is a big thing to look out for)
On Feb 13, 6:41 pm, wwwiori <[EMAIL PROTECTED]> wrote:
> Thank you for your reply. And I have testing on IE7 and
> Firefox2.0.x , and when I using code:
> document.getElementById("changeType").setAttribute("type","button");
> can change the type when the element has created... so,I think maybe
At home, I use TextMate under Mac OS X.
At work on a Windows XP box, I use a custom themed Notepad++, seen
here:
http://img169.imageshack.us/img169/6766/nppgd0.jpg
Hi, I would like to have a "onlytext" rule, that is to say no special
chars as" ' / ; : `$ etc...
Or maybe im wrong and it is already done ??
Please excuse my english..
Thanks and kiu :D
Nevermind...i figured it out. sorry for the double post
On Feb 13, 2:11 pm, igb <[EMAIL PROTECTED]> wrote:
> Hello,
>
> I am trying to use the show/hide jquery function to show and hide book
> descriptions by clicking on the name of the book. It seems that the
> script works OK in firefox but not
andrea--thanks so much for this helpful tip. I get the positioning
and overflow stuff, but I'm unclear on the 'li:eq(' + n + ')' syntax--
I would have expected some form of .each perhaps with an incrementing
variable to use as the "multiplier" for determining the top value for
each . If I read t
Hi everybody,
I have the following code:
An I would like to
A) change
src="/img/btn_search.gif"
into
src="/img/btn_search_hover.gif"
onMouseOver and back onMouseOut
B)
change value="search for..." onFocus
I know this is really a jQ-beginner question and it should be easy,
but...
An
Problem solved by cloning the element which is to be added, like this.
$("#adder").click(function()
{
var $elementToBeAdded = $('#content').clone();
$('#container').prepend($elementToBeAdded);
});
easy peasy
meeboo wrote:
>
> Hey all
>
> In this example, how come I can't prepend
does anyone know a plugin or a way to slide divs from left to right ?
i found some ways but only with images, and im not very good at
programming so i coudln't do it with .animation it didn't work very
well
Solved it, it seems as if prepend moves the element instead of copying it. So
when trying to add the element a second time you just end up moving the
element to the exact position it's located.
meeboo wrote:
>
> Hey all
>
> In this example, how come I can't prepend the paragraph to the div mo
Hi there, I just stepped in the jQuery world, and my first homework is
try to make a simple form validation example like following.
The problem is I haven't figure out how to automatically decide, on
form submission, how to figure out return turn or false.
I want the submit & receiving happened
Hi, I would like to have a "onlytext" rule, that is to say no special
chars as" ' / ; : `$ etc...
Or maybe im wrong and it is already done ??
Please excuse my english..
Thanks and kiu :D
Hi Rick,
here is some explanation of the behaviour:
http://docs.jquery.com/Plugins/Validation#Validation_event
Jörn
Well to be honest, currently the code is a bit of a mess. Do a view-
source on the demo and you see that you have to pass in everything in
the constructor.
What i want to do, if that is oke with you guys, that you can do
something like this:
oUploader = new Uploader('moviename');
oUploader.brows
Hi,
I'm using the jQuery tabs plugin from here http://docs.jquery.com/UI/Tabs.
I have a number of AJAX tabs. When one of the tabs loads (the tab
"Properties"), it loads with a form. How do I call my validate form
function and then submit this form when a user clicks on a different
tab?
Here ar
A little note from your friendly local accessibility bore ;)
In Thickbox, Cody uses 'position:fixed' for the thickbox div. This
ensures the div won't move. However, if you try increasing the font
size in a Thickbox window, you'll see that you can't get to the bottom
of the box!
So, in my view, b
Thanks for the tip!! I set my copy line as CTRL+D
and assigned that Swap with line above/below :)
Feijó
Sean O escreveu:
I used Notepad++ for a while, thinking it was the bee's knees. But then I
found PSPad a few months ago, and it's earned my title as go-to editor.
Tabbed Interface,
Pete - it may have something to do with the absolute positioning of the
returned ajax content. Try using relative positioning and see if that
helps.
-- Josh
- Original Message -
From: "pedalpete" <[EMAIL PROTECTED]>
To: "jQuery (English)"
Sent: Wednesday, February 13, 2008 5:15 P
http://www.panic.com/coda/ coda - but then, I'm one of those mac people...
rolfsf
Feijó-2 wrote:
>
> I changed my own a few weeks ago, now I'm using Editpad++
> ( http://sourceforge.net/projects/notepad-plus/ )
> its freeware, nice resources, like macros, quick-text, highlighted
> source, .
Before (trying to) adopt jQuery, I've never used Javascript to control
content. In reading hundreds of blogs by Javascript developers over
the past weeks, I've been alarmed by their attitude to accessibility.
It's not just a matter of 'political correctness', and it's not just
about minority users
Nevermind about the PHP. It couldn't find my PHP.exe, which was in
WAMP5. Still think it's kind of lame that the jQuery support is for
jQuery1.1.
On Feb 14, 7:30 am, timothytoe <[EMAIL PROTECTED]> wrote:
> I just tried Komodo. Very nifty. I like how it checks JavaScript
> syntax and does word com
I used Notepad++ for a while, thinking it was the bee's knees. But then I
found PSPad a few months ago, and it's earned my title as go-to editor.
Tabbed Interface, multi-code-highlighting, live FTP editing, projects, text
diffs, many user-created extensions, etc. etc.
What sealed it for me was t
Hi, all. (especially Jorn)
Anything wrong with this script?
Thanks,
Rick
$().ready(function() {
$("#add-announcement-form").validate({
errorPlacement: function(error, element) {
er
Sorry Eridius, I was going to suggest ensuring that your content only
takes up the screen area but thought you would probably have
discounted that for some reason.
Before now, I've never used Javascript to control content and am quite
shocked by the attitude of many developers to accessibility. I
Eclipse - Aptana and various other application specific plug-ins around Eclipse.
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of
Feijó
Sent: Wednesday, February 13, 2008 8:38 AM
To: jquery-en@googlegroups.com
Gilles,
In your code you have fMaxFilesize but on the wiki you have fMaxFileSize,
should I fix the wiki or do you want your code camelCased?
On 2/14/08, Benjamin Sterling <[EMAIL PROTECTED]> wrote:
>
> Wha!!! No 24hr seven days a week support for everything under the sun?!!
>
> Thanks for the upd
I just tried Komodo. Very nifty. I like how it checks JavaScript
syntax and does word completion. The jQuery plugin that comes with it
is old. Is there a newer one? It also is missing a PHP plugin. Where
is the locations for those plugins it uses?
Is the Komodo IDE worth the money?
Still love PS
First would be that you can't have more then one ID on a page, if you need,
you should change id="content" to class="content". And second, if your html
look exactly as you have it, you are no "cloning" the P, you are just
"moving" it. If you need to duplicate it do something like:
$("#adder").cl
Also, if it's really Firebug that you're after, and not just the
console, you could do this:
if (window.console && console.firebug) {
console.log("Firebug is installed");
}
--Karl
_
Karl Swedberg
www.englishrules.com
www.learningjquery.com
On Feb 14, 2008, at
Wha!!! No 24hr seven days a week support for everything under the sun?!!
Thanks for the update Gilles, I will be working on something today. Where
can I get the files? I could not find a zip? I can just grab it down from
your demo site, not a huge deal.
Thanks again.
On 2/14/08, Gilles (Webu
We found that setting, and it looks like it worked. Thanks!
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of tlphipps
Sent: Thursday, February 14, 2008 7:59 AM
To: jQuery (English)
Subject: [jQuery] Re: OT: FCK editor now double spaces with enter
Hi folks,
(FYI: I've asked this question in the thickbox forum, but it doesn't
seem to get much traffic, so maybe someone here will have an answer.)
I have the thickbox widget working fine. Love it. While most of the
TBs are standard (open box, display content, close box) in some cases
I need to
This is very similar to the problem I'm facing:
To enable a thickbox to reload itself with new content *UNTIL* the
user closes the TB manually. Then if they relaunch the TB (from the
same DOM element) it should load up the TB with the original, default
content (and not the newer, reloaded content
1 - 100 of 133 matches
Mail list logo