I have a textarea and a button that allows me to select some text and
apply a span and class to it. What I need to do is select that text
later and remove the span and class by clicking on a button. I think I
can handle to part that removes the span and class, but I don't know
how to get the selec
Hello again
Still trying to adhere to 'Web Standards' while using (almost too
many) whizzy jQuery effects, I see I'll need to provide some
alternative text styles for users that don't see my lovely background
images. I imagine Javascript can do the detection? Can you please
advise - I read this:
The function itself? I really don't think you need to, that function will
work in all browsers and really down not need to depend on a framework to
achieve. With that said, below is how you would change the function.
function confirmAction( action ){
jQuery('#button_' + action + ', #button_back'
Ahhh come on Gilles!! You could not have release this two weeks ago? I
just spend two weeks getting swfupload built into my wordpress plugin and
would have loved to use jquery plugins. Oh well, guess I will have to start
planning for version 2.5 :).
I do have one real question for you, I have a
Ariel, looking good, your ajax example is erroring out in FF, did not get a
chance to check IE.
On 2/11/08, Ariel Flesler <[EMAIL PROTECTED]> wrote:
>
>
> Those 2 urls broke down... Here I go again:
> ScrollTo: http://flesler.blogspot.com/2007/10/jqueryscrollto.html
> LocalScroll: http://flesler.b
Those 2 urls broke down... Here I go again:
ScrollTo: http://flesler.blogspot.com/2007/10/jqueryscrollto.html
LocalScroll: http://flesler.blogspot.com/2007/10/jqueryscrollto.html
By the way.. this plugin is a replacement for jQuery.ScrollShow, it
never got over beta, this one has a better approac
Hi everyone
I added the first release of jQuery.SerialScroll. This is a generic
and very customizable plugin to navigate series of elements.
This plugin is similar to jQuery.LocalScroll: (http://
flesler.blogspot.com/2007/10/jquerylocalscroll-10.html)
But it serves a different purpose. Instea
Indeed, I had this problem with a plugin and 1 turned out to be the
solution, 0.5 (etc) also works.
Cheers
Ariel Flesler
On 11 feb, 23:12, Dave Methvin <[EMAIL PROTECTED]> wrote:
> > Class zero gets initially set to 40% opacity over 0ms. Upon hover over the
> > opacity should get set to 100% o
> Class zero gets initially set to 40% opacity over 0ms. Upon hover over the
> opacity should get set to 100% over 0ms (immediately), but instead the
> animation takes the default duration to complete.
>
> Class one is the same as class zero, but the haver animation takes one
> millisecond to exe
I just saw this tutorial that explains something just like what you've
described:
http://jmar777.blogspot.com/2008/02/easy-multi-select-transfer-with-jquery.html
--Karl
_
Karl Swedberg
www.englishrules.com
www.learningjquery.com
On Feb 11, 2008, at 5:30 PM, [EMAIL PROTECT
Cristian escreveu:
> Thank you Carlos, probably I was very tired last night. I spent 30
> minutes trying to spot the problem. I'll probably never forget to add
> a semi colon again. :-)
You're welcome..
I'm glad to help...
=)
---
Carlos Antonio da Silva
Sistemas de Informa
Is there a way to get the contents of a file without actually
uploading the it?
Example: I just need the contents not the actual file. I need to parse
the contents of
a file on the fly and display it to the user. Thanks for any help.
--tstrokes
If you had a consistent naming convention, I think something like the
following would work:
function setClick() {
var id = "";
for(var i = 0; i < arguments.length; i++) {
id = arguments[i];
$("#ckbx_"+id).click( function() {
$(this).attr("checked") ? $("#opt_"+
Thanks!
I thought events would stay unless the actual element the event is
attached to is changed, not the necessarily the contents of the
element.
I guess I'll be rewriting that portion...
Thanks again...
-Nate
On Feb 11, 3:11 pm, "Kyle Browning" <[EMAIL PROTECTED]> wrote:
> Use either the liv
If i have the following button:
The aobve button calls the next function:
function confirmAction( action ) {
document.getElementById('button_' + action).style.display = 'none';
document.getElementById('button_back').style.display = 'none';
document.confirm.submit();
Hi,
Let's say I have a SELECT menu with id = "fromMenu" and if a user
clicks the "Add" button, I want the selected menu item from the
"fromMenu" to be appended as the last item in antoher menu with id =
"toMenu".
I'm sure this is simple. How can it be done?
Thanks, - Dave
Thanks for looking at this Jörn,
but then the ajaxQueue plugin becomes rather moot, doesn't it?
Also I was trying to make a plugin of the code above. I "just" needed
a way to ensure the initial call had come back before continuing.
And for a few minutes there I thought the queue plugin was going
This is untried, but something similar should work out for you:
function doIt(target) {
var myid = $(target).attr("id").toString().split("_")[1];
var myelement = "table#" + myid;
if ( $(target).attr("checked") ) {
$(myelement).show();
}
else {
$(myelement).hide();
}
}
This m
Use either the live query plugin OR, reapply the events.
The issue is, the events are added once the dom is ready. after that, the
functions never get called again. So if you change out elements, your events
are gone. Live Query solves this.
Kyle
On Feb 11, 2008 11:13 AM, Nate <[EMAIL PROTECTED]
Hi,
I hope someone can help me out a bit.
I am finding myself doing a lot of code (as I'll paste below). It's
basically the same block of code with different variables.
What I am trying to do is consolidate all that code into a funciton
where I can declare all the checkboxes I need to create a
well mouseover does work but i think i did find the issue: look at this code:
//load auto complete after set number characters
if($(this).val().length >= self.options.load_number)
{
$('#' + self.options.auto_complete_id).load(self.options.url,
{
search_filter: sel
sozzi schrieb:
I guess I must be using the plugin wrong. I am trying to make sure
that the second AJAX request does not start until the Session.ID
variable (from the first call) was set.
The second call never gets properly executed (below) because
Session.ID is still undefined
So I guess I'm
How i can change the default position of one element when i get one error?
I want the error dosnt appear appened to the checkbox.
[ ] I accept the rules
with error:
[ ] You must accept thisI accept the rules
my mouseover event is not taken effect in IE 6
--
View this message in context:
http://www.nabble.com/mouseover-and-IE-6-tp15421402s27240p15421402.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.
There is some problem with this script working in IE. It works in
FireFox. The whole thing consists of HTML page, JS file and CSS file.
The following html page is validated XHTML. It contains Select box and
two anchors for filtering the content of that select box.
One filter filters options by fir
Hi all, this is an awesome jquery extension that I am currently using
as part of a much larger project (with a lot of rewriting the
functions after the upload is successful - e.g. image resizing,
thumbnail creation etc). The author is to commended on the layout of
his code - very simple to follow.
I created three table elements using jquery, and each td cell in the
tables has hover and click events attached to it.
The basic table generation is cached in an array and the only changes
that happen to the initial content occur by updating individual td
contents using $(this).text(val). All of
Hello,
after selecting a value in my select field and clicking on a button, I
call a function (please see the code below)
But $('#newDoc_name') is an input, I would like to set his value with
the result of 'index.php/get/s_document_loadName/
Can you help me?
Thank you
$('#newDoc_selectok