Hi Jay.
Am 23.03.2008 um 19:48 schrieb Jay Salvat:
I'm proud to announce you the official release of markItUp! (former
jTagEditor) and markItUp! website.
I hope everything will be ok and i forgot nothing important.
Its great. I like the approach.
After playing around a little, it sure is a c
Use .attr('disabled', true) and .attr('disabled', false) to set the
'disabled' state of form elements.
It's one of those things that works in a way you don't quite expect,
if you're thinking of it from an HTML perspective.
After a form element is parsed in from HTML the attributes like
'disabled
The setup:
2 Radio Buttons and a text field.
What I wish to accomplish:
When Radio #1 is clicked, disable the text box.
When Radio #2 is clicked, remove the disabled attribute so the text
box is now enabled.
I also want this done in more than one instance, the "2 Radio Buttons
and a text field"
Did you find a solution to this? I have the same problem.
On Apr 1, 9:41 am, cmt <[EMAIL PROTECTED]> wrote:
> I have a page that loads dynamically via innerHTML...I would like to
> replace the loading script with something from the jQuery library.
> But I cannot find any jQuery function in the d
Or apply an ID instead of a class to the div(s)...maybe too simple of
an answer, but if you can't/won't change the divs to IDs then
FrenchiNLA's suggestions should be fine.
On Apr 2, 11:21 am, FrenchiINLA <[EMAIL PROTECTED]> wrote:
> you need to get the sibling of your see-more class somethig lik
I've been using Joel Birch's superfish drop down menu, and have used
transparent pngs as background iamges on the drop downs. Woks
brilliantly, but in Firefox MAC, the links between the first and last
link disappers, but you can still hover over them. I've used
swfobject, and inserted the wmode op
*head smack* I missed that version of the function. It's definitely
not something I've used.
Karl Rudd
On Thu, Apr 3, 2008 at 1:47 PM, Karl Swedberg <[EMAIL PROTECTED]> wrote:
>
> Actually, .toggle() is a little like .load() in that it can be used for two
> different things. There is the .toggl
Actually, .toggle() is a little like .load() in that it can be used
for two different things. There is the .toggle() effect and
the .toggle(fn, fn) event, with the .toggle(fn, fn) doing an "every
other" event thing.
http://docs.jquery.com/Effects/toggle
http://docs.jquery.com/Events/toggl
On Apr 3, 9:49 am, ab5tract <[EMAIL PROTECTED]> wrote:
> Thank you so much man. I really appreciate it, even if I don't
> understand the single-line glory of
>
>set.push(dat.splice(Math.random()*dat.length|0, 1));
set.push(...)
Calls the push method of set, which is an array, with the
resu
Also, '[EMAIL PROTECTED]' can be replaced with ':checkbox'.
--Erik
On 4/2/08, Karl Rudd <[EMAIL PROTECTED]> wrote:
>
>
> The "toggle()" function is used to hide and show items, nothing to do
> with clicking or changing of state.
>
> http://docs.jquery.com/Effects/toggle
>
> What you want is some
The "toggle()" function is used to hide and show items, nothing to do
with clicking or changing of state.
http://docs.jquery.com/Effects/toggle
What you want is something like:
$('[EMAIL PROTECTED]').click(
function() {
if ( this.checked )
$(this).parents('tr').animate({backg
Hello folks,
I have a table of data, with each row containing a checkbox. What I
want users to be able to do is tick the box of each row of data they
want to delete (and after ticking, they will submit the form etc etc.
As a visual aid, I want to alter the background colour of the row -
and
I have reduced the issue to a class named itemHeader. This class is
assigned to the sortable's handle param.
It is only this class that remains on top of the containing accordion.
panels. That class looks like:
.groupItem .itemHeader
{
line-height: 28px;
background-color: #DAFF9F
Hi,
Sorry, I should have clarified. When I've tried other modal window options,
they have trouble with forms. What I'll be trying to do is place a login
form, register form, and forgot password form inside of the jqModal window.
Once submit is clicked, the modal window should close, and the main
Thank you so much man. I really appreciate it, even if I don't
understand the single-line glory of
set.push(dat.splice(Math.random()*dat.length|0, 1));
It is pure JavaScript. I assume there is no "better" way to use jQuery?
In partial answer to my own question, I wrote this, which seems to
work:
$('#newTab').click(function() {
var $tabs = $('#container >
ul.tabs-nav').tabs('length');
var tabNum = ($tabs + 1);
I am having a real problem with some container divs whose content is
loaded via the .load() function. Each div holds a table containing a
form. When the form is submitted it adds (or removes) a row to the
table. When a row is added to the table the div elements that follow
do not move down to acco
Hello Jan,
I would like to ask if you have a hint on how to solve the white
flickering issue with jCarousel when in use on FF 2.0? I have tried
the fix below that you gave to another user, but I don't know if this
was a circular carousel. This fix does not work in FF 2.0
Any hints would be app
I'm seeing more and more evidence that the ready function isn't really
working properly with jquery 1.2.3 and FF 2.
$(function(){
$('#mydiv').hide();
});
things like above, when the page loads sometimes i see the div, then
it disappears.
Is there just a problem with the shortcut? Is it a combi
JavaScript in browsers is "single-threaded" (and thank goodness for
that). So when JavaScript is running (in most browsers) everything
else is queuing up. When you break the code into chunks, via
setTimeout, you are (essentially) "yielding" control back to the main
event loop periodically, so it h
On Apr 2, 7:08 pm, rolfsf <[EMAIL PROTECTED]> wrote:
> Thanks Klaus!
>
> Any chance you could give me a quick explanation of what the different
> parts of that script are doing? I'm trying to understand how the
> script determines which tab to remove. Doing my best to learn these
> concepts!
Th
On Apr 2, 8:25 pm, rolfsf <[EMAIL PROTECTED]> wrote:
> Adding (appending) new tabs in ui.tabs is pretty straightforward, but
> I notice in the example:http://stilbuero.de/jquery/tabs_3/#container-9
>
> that if I append multiple new tabs, they are all given the same ID
> (which won't work well in r
rolfsf, do you have a stable example? I need to do this asap with jquery
1.2.x (simulate interface TransferTo) and am not able to start using the
UI or Enchant stuff yet (for this project).
Thanks,
Jack
rolfsf wrote:
FWIW, I've gotten a similar effect using the animate() function, though
rath
On Apr 2, 2008, at 4:28 PM, alivemedia wrote:
Still not working, weird, here it is as it stands:
$('input[type=checkbox]').bind("click",function(){
var el=$(this).parent().next('td select')
if (this.checked) {
el.attr('disabled', false);
} else {
Does anytone know of the Eyecon interface components hardwire CSS z-
index in their code?
On Apr 2, 12:34 pm, OhNoMrBill <[EMAIL PROTECTED]> wrote:
> I am trying to implement the sortables demo (http://
> interface.eyecon.ro/demos/sort.html) in an accordion. Problem is it
> works fine in FF and S
Yeah, it's weird. It gets to the part in the script where it binds the
event handler, so that's working ok, but it doesn't seem to be able to
prevent the default click event. Even when I put "return false" explicitly
in the event handler, it opens the image in a new page.
Odd that it would
Andy - as you may have guessed, you have a scoping issue. Everything inside
the doc.ready call is in an anyonymous function.
Any functions inside doc.ready that you need to have access to from *outside*
doc.ready, you'll need to scope accordingly.
You might want to create a variable outside do
As a follow up to my post on "Flex Ajax Bridge & jQuery"...
I found that if I place the offending code OUTSIDE the doc.ready call, it
works okay, and the doc.ready still fires correctly. However, the code which
is outside of the doc.ready call cannot access functions INSIDE the
doc.ready call.
The problem is that the function that you unbind, is not that same the
you bind, although they are equal.
Try this:
(function($) {
$.fn.checkForm = function(action){
if (action == "add")
return this.bind( 'submit', this.checkForm.handler );
if (action == "remove")
return
Very nice.
I'm curious, where are you using ScrollTo ?
I wonder why do people always respect the header of jQuery, and throw
it away when it comes to plugins ?
Our work deserves some more respect :)
Great tool, good job.
--
Ariel Flesler
http://flesler.blogspot.com
On 2 abr, 16:38, jsandppr <[
Try making a full formed "a" element, $(''). IE is a bit fussy
sometimes about what it will create, it will fail when you specify an
"open" element.
Karl Rudd
On Thu, Apr 3, 2008 at 3:47 AM, Peter Bengtsson <[EMAIL PROTECTED]> wrote:
>
> I'm going to explain my problem by code. Both of these wo
Hm. The bottom paragraph of that didn't get formatted the way I had
hoped. Hopefully my meaning is clear from the first three paragraphs.
On Apr 2, 9:08 am, SterlingK <[EMAIL PROTECTED]> wrote:
> Hi, Karl.
>
> No worries. I'm just impressed that someone as busy as you gets back
> to us on thes
Hi,
I'm using the jquery charcounter to count and limit characters in text
areas. It's working well for the most part, except for the following
problem. If I paste in text that exceeds the limit and it's truncated
to say 1000 characters that are allowed, and then I go in and select a
couple of
Still not working, weird, here it is as it stands:
$('input[type=checkbox]').bind("click",function(){
var el=$(this).parent().next('td select')
if (this.checked) {
el.attr('disabled', false);
} else {
el.attr('disabled', true);
We have articles on our site that are standard html (i.e. using p
tags).
We also use javascript to generate ad tags (i.e. doubleclick, adsense,
etc).
So I have a hidden div on the page that the ad is generated into (via
javascript). I then want to append the "ad" to the 3rd paragraph.
Everythi
Check that the input element have a name attribute
On Apr 1, 6:05 pm, TunaSandwich <[EMAIL PROTECTED]> wrote:
> Hello,
>
> I'm using the datepicker with jQuery. It works quite nicely.
>
> I'm going a traditional form post (or a get) using a submit button and
> it seems that the content of the tex
I'd not rely on anything that is not in the docs. I suffered from
these changes in the past.
If you want a safe way to use this, you should check:
jQuery.Collection: http://flesler.blogspot.com/2008/01/jquerycollection.html
You just need to import the methods bind, unbind and trigger, and that
ca
oh, that's a bummer. I was hoping it could help you out this time.
Well, tuck it away for future reference, I guess.
Hope you manage to solve the problem.
cheers,
--Karl
_
Karl Swedberg
www.englishrules.com
www.learningjquery.com
On Apr 2, 2008, at 3:04 PM, Josh Nathanson
Has anyone on this list done any work with the FABridge code provided by
Adobe for use in working with Flex?
I've got it running great when it's in a plain script block inside the body
tag. But the second I put it inside a $(document).ready call, it dies (with
no errors). I've tried putting the c
As Jorn said (and he'd be THE definitive source as the author of that
plugin) - the MAX parameter is not used by the server. Otherwise, I
think you have the gist of it.
The routine regarding the MAX goes like so:
- user enters some text
- that text is passed to the server side code via the
I would like to hear more about the back-end of this -- its indexing
(even for "contains" searches) is very fast and nice.
Thanks!
On Mar 16, 5:02 am, JohnForsythe <[EMAIL PROTECTED]> wrote:
> Hi, I wanted to show you guys a tool I just built using jQuery andDrupal.
> It's called Module Finder
Hi the list,
I was trying to change the rowspan on a table cell and notice that it
was not
working with ie. (I was doing something like $('...some
cell).attr('rowspan',15);)
It was working with other browser.
Using debug bar I noticed that the computed cell html code was like
this:
So
I'm kinda of a begginer on JQuery and I'm writing my first plugin.
The plugin should handle form validation, in which I want to be able to
enable or disable validation.
The simplified version is like this:
(function($) {
$.fn.checkForm = function(action) {
function validateForm() {
No one has any better styles done? That hurts.
On Apr 1, 8:44 am, wick <[EMAIL PROTECTED]> wrote:
> No offense to anyone involved with creating the default examples, but
> I think the default and especially the "alternate" UI DatePicker
> styles are awful. I realize they are meant to be a startin
dineshv schrieb:
Hi Shawn.
Thank-you very much for the clear explanation. I mean "remote" as in
"the same domain". Let's see if I understand your explanation:
A large number (>10,000) of string items are held in a database (or
array) at the server. We want to make the string items available
Hi Shawn.
Thank-you very much for the clear explanation. I mean "remote" as in
"the same domain". Let's see if I understand your explanation:
A large number (>10,000) of string items are held in a database (or
array) at the server. We want to make the string items available to
the autocomplet
Thanks Karl, I didn't know about that option in Firebug. Haha, many times
I've tried to quickly read the error in the console before the page gets
refreshed.
However it's not helping in this case, as apparently no error is being
thrown. Which leads me to believe that shadowbox's handler is
I love jQuery, but it's very difficult sometimes to work with a
jQuery-driven app when you're getting JS errors that aren't being reported.
Does anyone have a good means by which to display and deal with errors from
within jQuery?
Andy Matthews
Senior Cold
interesting, for what purpose would you use this functionality?
why not just
var monkey = {name:'Dave',
climb:function(){alert(this.name + 'is
climbing');}
monkey.climb();
On Apr 2, 8:02 am, Thom <[EMAIL PROTECTED]> wrote:
> This works:
>
> var monkey = { name: 'Dave' }
> $(
you need to get the sibling of your see-more class somethig like :
$(this).siblings(".news_complete")slideDown(1000);
should work for you
On Apr 1, 9:04 pm, Brandnew <[EMAIL PROTECTED]> wrote:
> Hello,
>
> I hope I'm more or less clear in my title.
>
> I have this problem :
>
> I have several DI
Thanks Klaus!
Any chance you could give me a quick explanation of what the different
parts of that script are doing? I'm trying to understand how the
script determines which tab to remove. Doing my best to learn these
concepts!
rolfsf
On Apr 1, 11:42 pm, Klaus Hartl <[EMAIL PROTECTED]> wrote:
>
This is my first project using jquery, and i also I'm newbie to
javascript. I Making a component for joomla using jquery, to make
slideshow. see
http://lapollainc.net/index.php?option=com_smartjgallery&task=slideshow&Itemid=33.
on local site the transition is okay. but when i uploaded to server
t
Adding (appending) new tabs in ui.tabs is pretty straightforward, but
I notice in the example:
http://stilbuero.de/jquery/tabs_3/#container-9
that if I append multiple new tabs, they are all given the same ID
(which won't work well in real life)
Is there an easy way to generate sequential IDs? e
I'm going to explain my problem by code. Both of these work perfectly
fine in Firefox but only the *second one* works in IE 6.
** THE ONE I WANTED TO WRITE **
function __duplicateToolbarButtons() {
// Make "save" and "save and view" buttons appear in toolbar
if ($('#CMSButtonBar').size()
Hi,
I'm finding this plugin very useful, however i have one major problem
with it (i dont know if its just me).
When i click to sort on a column it sorts it ascending, which is
correct. Then i sort on another column ascendng, fine. If i click to
sort the first column again it sorts it descendin
Hi, Karl.
No worries. I'm just impressed that someone as busy as you gets back
to us on these issues at all. Thank you!
Hm. Perhaps I wasn't clear on what I was trying to accomplish.
Probably either filter or find would be fine. What I'm looking for is
how to target the specific div on the a
Hi all,
I found that one of the demo of jqModal (#4) features a ajax loading modal
content with javascript tag in the response get evaluated.
I studied the jqModal code itself and it seems that it just call the usual
jQuery.load() method.
How the
I can take credit for it. :-)
Very glad that you liked it. Thanks for the compliment!
--Karl
_
Karl Swedberg
www.englishrules.com
www.learningjquery.com
On Apr 2, 2008, at 2:20 PM, tlphipps wrote:
I can't take any credit for the article. I thought it was very well
writte
Hey Josh,
I haven't used the Shadowbox plugin (though I've admired its beauty).
But sometimes it's hard to catch what could be a JavaScript error when
the page gets refreshed. Have you tried using Firebug and checking the
"Break on all errors" option? That might help you troubleshoot. it
I am trying to implement the sortables demo (http://
interface.eyecon.ro/demos/sort.html) in an accordion. Problem is it
works fine in FF and Safari, but IE is all wigged out. IE draws the
sortables on top of everything else, instead of inside like the other
browsers do.
Anyone have any insight o
I can't take any credit for the article. I thought it was very well
written though!
On Apr 2, 10:18 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote:
> Dude! That's exactly what I was looking for!
>
> And I actually understand your solution too, which is a huge bonus for
> me.
>
> Thanks for yo
Hey all,
I'm using the Shadowbox script successfully with jQuery 1.2.1, however when
changing to jQuery 1.2.3, it no longer functions properly. It looks like
something in the preventDefault mechanism in the Shadowbox jQuery adapter is
broken, because when clicking on the image, it does not p
Hello jQuery fellows,
I'd like to invite you to support the validation plugin in one (or both)
of two ways:
Provide a localization in your favorite language. If you are using the
validation plugin in a project, you may already have a translation
ready, and you're welcome to contribute it ba
Also, I'm adding entries as list elements to a UL. Is there a clever
way to keep someone from adding the same thing twice?
On Apr 2, 9:28 am, timothytoe <[EMAIL PROTECTED]> wrote:
> I've been trying a few different versions of this plug-in. It's nice,
> but the very first thing I have to do is ov
"see no mention of using forms inside of the jqModal window?"
What's to mention? There is nothing special about a form inside the
that would make up the modal window's content, it'd be just like
anything else on the page
I've been trying a few different versions of this plug-in. It's nice,
but the very first thing I have to do is override the colors.
.ac_over {
background-color: #fed;
color: #012;
I've done it. If I remember right, I had to use a local DIV, hide it,
and then round the corners.
My HTML looked something like this:
Organization
X
Please wait. Loading . . .
Then the corresponding
I am using jqModal and am trying to get the window to have rounded corners.
Does anyone know of a way to accomplish this?
Thanks for any help you can provide.
--
View this message in context:
http://www.nabble.com/jqModal-and-Rounded-Corners-tp16447295s27240p16447295.html
Sent from the jQuery
Dude! That's exactly what I was looking for!
And I actually understand your solution too, which is a huge bonus for
me.
Thanks for your time :)
Steve
On Apr 2, 3:05 pm, tlphipps <[EMAIL PROTECTED]> wrote:
> I think the following like may explain the problem you're experiencing
> (if I'm underst
Yes, I found that page, but it seems that it's written more for the
experienced jQuery user, not someone like myself who is new to this.
I've looked through the page and I see no mention of using forms inside of
the jqModal window? Maybe you can point me in the right direction there
since it's o
Hi,
I'm finding this plugin very useful, however i have one major problem
with it (i dont know if its just me).
When i click to sort on a column it sorts it ascending, which is
correct. Then i sort on another column ascendng, fine. If i click to
sort the first column again it sorts it descending
Maybe this will seem impudent, but ...
> I have a feeling I'm just missing something in the documentation, but
> is there anyway to get a standard DOM object to return from a jquery
> selector?
>
>
>
>
>
> Essentially I want a way for $('.target', '#context') to give me the
> equivalent of
Hi Erik,
I don't think you're going to be able to animate these properties at
all with the core jQuery library alone.
Please take a look at the Color Plugin and see if that helps:
http://plugins.jquery.com/project/color
--Karl
_
Karl Swedberg
www.englishrules.com
www.learn
hi,
you have all the answers in the examples of this well documented page:
http://dev.iceburg.net/jquery/jqModal/
Pere
deronsizemore wrote:
>
> I'm wanting to use jqModal for my "login," "forgot password," and
> "register" forms on my site. I've tried using thickbox for this same thin
I noticed one thing that may have caused an error. The animate method
requires hyphenated property names (margin-left, table-cell) to be
rewritten in camelCase ( marginLeft, tableCell). However, these
changes didn't make a difference. I've updated the code in the example
to reflect the proper impl
i think you should get a copy of the markup of the entire LI element
you want to hide, and pointing to that LI element onclick
you .remove() it.
To reappend it, store the position of the removed li (.eq(n)), and re
- insertAfter() the element that precedes the one you removed...
??
On Apr 2, 11:
I'm wanting to use jqModal for my "login," "forgot password," and "register"
forms on my site. I've tried using thickbox for this same thing and it's
really buggy when using forms (or so it seems). I'm wondering if there are
any major hurdles by using forms in this manner with jqModal? If so, I m
I think the following like may explain the problem you're experiencing
(if I'm understanding the problem correctly):
http://www.learningjquery.com/2008/03/working-with-events-part-1
On Apr 2, 3:07 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote:
> "the issue we're experiencing is that in some
Quinode,
Dan's suggestion of setting positionFixed to false worked for me, the
pager div then shifted to wherever the bottom of the table was.
The code I used:
$("#schTable")
.tablesorter({
headers: {
This works:
var monkey = { name: 'Dave' }
$(monkey).bind('climb', function(monkey) { alert(this.name + ' is
climbing!'); });
$(monkey).trigger('climb');
I really just wanted to check that this was expected functionality -
and isn't going to disappear anytime soon - as I'd like to lean on it
quit
I have a tooltip (using clueTip plugin) applied on each tag on
my image map and it's
working fine everywhere but not with IE6 and IE7.
The tooltip show just fine but if the got set 'alt' attribute
IE6/7 display also content of that attribute in default IE tooltip. In
case alt is not set, IE6/7
Hi
I have a problem with the facebox plugin and jquery running in IE.
I have jquery and the facebox plugin.
I apply facebox to a link the normal way.
the correct content loads into the facebox.
HOwever when if I press the return key, the facebox will disappear and
reload.
IN Firefox a press
"the issue we're experiencing is that in some cases $
(obj).draggable()
is fine, and then in other cases (like inside of the callback
of .load()), $(obj).draggable() errors out, throwing "not a
function..."
--adam "
Well, sometimes, but Drake has described my main problem. I can make
the dynamic
This is killing me! Due to the rule of supply and demand, I'm sure there
must be a workaround as there are so many people in forums searching for
the same grail...
Picture a list:
A B C
D E F
G H I
The list items are floating left, using CSS, on a fixed width to
simulate 3 columns.
If I call .
I have added a js file in my html file.
I want to remove the script from my file using jQuery.
I have tried using the following
jQuery('script[src="test.js"]').remove();
But the script is not getting removed.
Please suggest some way for removing the script using jQuery.
Thanks to both Karls for your help!
I'll definitely try out the chunking method. Since I'd like to
understand what I'm implementing, can you briefly explain why this way
is better?
thanks,
az
On Apr 1, 4:59 pm, "Karl Rudd" <[EMAIL PROTECTED]> wrote:
> You can initialise the tips in "chunks".
Hi,
I have implemented the Richard Willis modified Superfish by Joel Birch
(http://users.tpg.com.au/j_birch/plugins/superfish/richard-willis-
example/). This is the first two tiers horizontal, third vertical
version.
I have modified the CSS to create a tab like interface and made the
second tier
Hello,
I am using the Richard Willis version (The first two tiers of menu are
horizontally laid-out and the third vertical.) of the Joel Birch
Superfish (http://users.tpg.com.au/j_birch/plugins/superfish/richard-
willis-example/)
I have modified the CSS to create a tab link interface. The first
$("#functionClick").click(function(){
function1(value);
function2(value);
return false;
});
ID's are unique, you don't need to prefix this with the element.
Use an anonymous function, that calls both of your custome functions.
Prevent the link from being followed by returning false.
Kri
Hello,
I hope I'm more or less clear in my title.
I have this problem :
I have several DIVs which contains different infos (the content of
them is coming from a DB).
Exemple :
See more
CONTENT CONTENT
HIDDEN CONTENT HIDDEN CONTENT
When
On Apr 1, 7:22 pm, Drake Aedus <[EMAIL PROTECTED]> wrote:
> Very clean and concise markup, degrades wonderfully. Truly the type of
> work one would look for and appreciate.
;-) hey, thanks
91 matches
Mail list logo