[jQuery] Re: A little different edit in place. (use a link to initiate the edit)

2007-07-30 Thread Mark
e("???", { > > cssclass : "someclass" > >}); > > in a function and than call the function when you click the link but > > that didn't work. > > Mark - you might be able to nudge the jEditable creator to mod the plugin to > allow for a &quo

[jQuery] Re: Problem with jQuery + Dimension plugin + Autocomplete plugin + Float

2007-08-06 Thread Mark
Brandon Aaron > > On 7/20/07, Mark <[EMAIL PROTECTED]> wrote: > > > > > > > Hi Brandon, > > It is difficult to create an example, because it is a complex > > application, and the autocomplete is highly customized. > > And also I am going vacations

[jQuery] jCorner problem?

2007-08-21 Thread Mark
This is the result I am expecting -- http://www.augustine.com/images/test/expected.jpg . This is what I get -- http://www.augustine.com/images/test/actual.jpg . I am using standard corner syntax, $(this).corner(); .. this 'actual' result only occurs in Internet Explorer when the page is refres

[jQuery] How do i get the hover effect working with fadeIn?

2007-09-01 Thread Mark
so how do i reset an effect when it's in use? for example when that hover effect works.. when you hover the effect when the first effect is still busy the effect should restart instead of finishing the first effect and than running the second. Thanx, Mark.

[jQuery] Re: How do i get the hover effect working with fadeIn?

2007-09-02 Thread Mark
anyone?

[jQuery] Re: A Newbie Question

2007-09-02 Thread Mark
Another common solution is to have an image or a div that you just show while loading and hide using the callback function... $(document).ready(function(){ $('#loadImg').show(); var fCallback = function(){ $('#loadImg').hide(); } $("#show").load("file.php", fCallback); }); On Sep 1,

[jQuery] Re: How do i get the hover effect working with fadeIn?

2007-09-03 Thread Mark
Oke, i'm currently useing the HighlightFade plugin to get something nearly the same done but it's still not quite how i want it.. some help here would be good.

[jQuery] Re: How do i get the hover effect working with fadeIn?

2007-09-03 Thread Mark
what i want is: hover a element and while your mouse is hovering that element the color should fadein to the hover color and stay like that until you hover out of it. than it should fadeout to the default background. 2007/9/3, Joel Birch <[EMAIL PROTECTED]>: > > Hi Mark, > >

[jQuery] Re: How do i get the hover effect working with fadeIn?

2007-09-03 Thread Mark
> If you use interface, you can animate colors with the regular animate > function. "Fading" is for changing opacity. Maybe you want something > like (untested): > > var originalColor = 'red'; > var hoverColor = 'blue'; > var duration = 1000; > $(...).hover(function() { > $(this).animate({back

[jQuery] Re: How do i get the hover effect working with fadeIn?

2007-09-04 Thread Mark
> You don't need all of Interface, just ifx and maybe iutil. Or you > could use highlightFade. I made a little demo: > > http://erikandcolleen.com/erik/projects/jquery/hoverfade/ Wonderful. if i don't need all of interface than i might just do that. Thanx alot for the demo.

[jQuery] Help with Superfish IE6 quirk

2007-09-05 Thread Mark
eover 'conferences' the menu items below it move. There are only 2 menu items that have second level menus (conferences & weddings). http://www.newportmirage.com.au/devel/ Any advice on how to solve this would be greatly appreciated. Thanks in advance. Mark

[jQuery] Re: Help with Superfish IE6 quirk

2007-09-06 Thread Mark
Hi Joel, Thanks so much for you help. Its working great. Cheers Mark

[jQuery] Re: New Plugin: ZoomBox

2007-09-09 Thread Mark
That's looking very funny! good job so far.

[jQuery] Re: [Announce] Horizontal Accordion plugin 1.00 alpha

2007-09-14 Thread Mark
Looks nice! but doesn't work smooth at all.. but than again.. it's still alpha.

[jQuery] Please help: How to simulate a Tab key press with jQuery

2007-09-15 Thread Mark
meter, but seems that no event is called at all. If anyone know how to this, please help, it is really needed to finish this project. Thanks in advance, Bye Mark

[jQuery] jCorner plugin not working as expected

2007-09-26 Thread Mark
in http://www.augustine.com/inc/jquery.js and the jCorner is in http://www.augustine.com/inc/corner.js Please let me know if you need more information as I am very hopeful to solve this problem. Mark augustine.com

[jQuery] JSON how to transform an object into an array?

2009-08-12 Thread Mark
9028","end_datum":"8230948","afspraak_type":"verjaardag"}} What i need to have is that it gives me an array that looks something like this: [ { id:5, title:test, start_datum:6161616, end_datum: 663461, afspraak_type: Memo } { id:10, title:bla, start_datum: 4819028, end_datum:8230948, afspraak_type:Verjaardag } ] What is the best way to get to this? Mark

[jQuery] Re: JSON how to transform an object into an array?

2009-08-12 Thread Mark
; Dhruva Sagar. > > Jonathan > Swift<http://www.brainyquote.com/quotes/authors/j/jonathan_swift.html> > - "May you live every day of your life." > > On Wed, Aug 12, 2009 at 3:18 PM, Mark wrote: > > > Hi all. > > I got an php page who picks up data

[jQuery] Request: build hoverFlow in jquery core

2009-06-01 Thread Mark
Hey, The biggest issue i always had with jquery was that queue build up stuff. Now we have the hoverFlow plugin to fix that: http://www.2meter3.de/code/hoverFlow/index.html But i was wondering.. shouldn't this be part of the core? like for example that you can say to the animate function to run o

[jQuery] Re: Request: build hoverFlow in jquery core

2009-06-02 Thread Mark
On Mon, Jun 1, 2009 at 9:46 PM, Mark wrote: > Hey, > > The biggest issue i always had with jquery was that queue build up stuff. > Now we have the hoverFlow plugin to fix that: > http://www.2meter3.de/code/hoverFlow/index.html > But i was wondering.. shouldn't this be par

[jQuery] Re: Request: build hoverFlow in jquery core

2009-06-05 Thread Mark
On Tue, Jun 2, 2009 at 10:48 PM, Ralf Stoltze wrote: > > Hi Mark, > > First let me say that your request might be better suited for the > jquery-dev list. > > As the author of hoverFlow I'm not quite sure if and how hoverFlow > should be included in core. > > I

[jQuery] Show/hide divs depending on form parameters

2009-06-13 Thread Mark
Hi all, I am pretty new to jQuery, and I'm looking for a way to kind of 'filter' divs depending on the parameters supplied by a form. I have three select boxes that set 'area', 'level', and 'time' parameters (for courses). I have given corresponding classes to some example divs, and I want the

[jQuery] Hide/show divs based on form parameters

2009-06-13 Thread Mark
Hi all, I'm trying to selectively hide and show divs based on what a user specifies using three select boxes in a form. I'm quite new to jQuery so I'm probably missing something obvious, but here's what I've got and it doesn't, work, they divs just stay hidden. Any help would be greatly appreci

[jQuery] Re: Hide/show divs based on form parameters

2009-06-14 Thread Mark
un 13, 8:37 pm, Mark wrote: > > > > > Hi all, > > > I'm trying to selectively hide and show divs based on what a user > > specifies using three select boxes in a form. > > > I'm quite new to jQuery so I'm probably missing something obvious, bu

[jQuery] Validate

2009-06-22 Thread Mark
HI I am trying to use the Validate plugin for Jquery with .NET. I managed to work it out on one particular page. However I have a minor problem. Let's suppose you have a page with 2 Query tabs. In the first tab the user can add a Person which includes Name, Surname etc. In the other tab the user c

[jQuery] error jquery-1.3.2.js(line 3633)

2009-07-06 Thread Mark
I have 3 drop down menu's where is post the value's bij a button.click (see code below). But when i push the button i see an error in fire bug "POST" http://localhost/agenda nieuw/handler.php 67ms jquery-1.3.2.js(line 3633)" I looked online for awnsers but couldn't find any. Maybe you guys can he

[jQuery] Re: error jquery-1.3.2.js(line 3633)

2009-07-07 Thread Mark
echo ""; } } ?>

[jQuery] Re: error jquery-1.3.2.js(line 3633)

2009-07-07 Thread Mark
http://webserver.c4v.nl/mark/agenda%20nieuw/agenda.php for the main file http://webserver.c4v.nl/mark/agenda%20nieuw/handler.php for the handler http://webserver.c4v.nl/mark/agenda%20nieuw/agenda.css for the css http://webserver.c4v.nl/mark/agenda%20nieuw/jquery-1.3.2.js for

[jQuery] Re: How to read the contents of .php filw on the webserver

2009-07-07 Thread Mark
var scrUrl; var Host = "http://www.example.com/read.php";; function inializeUrl() { scrUrl = Host //+ string //in de string komt de api key te staan maar omdat die niet standaard is maak ik er later een string van } function do_it()

[jQuery] Re: error jquery-1.3.2.js(line 3633)

2009-07-08 Thread Mark
Can anybody find anything what i did wrong? the only code that is not commented out in the handler.php is To show me what kind of values it gets and how it looks in an array so i can make an associative of it. On Jul 7, 3:01 pm, Mark wrote: > http://webserver.c4v.nl/mark/agenda%20ni

[jQuery] Re: error jquery-1.3.2.js(line 3633)

2009-07-08 Thread Mark
dea to use submit() instead of click(), to catch > people that use keyboard shortcuts and the like. > > so use: > $("form#myform").submit(function()... > instead of > $("button").click(function()... > > Jonathan > > > > Mark wrote: > >

[jQuery] Re: error jquery-1.3.2.js(line 3633)

2009-07-08 Thread Mark
7;).val() > >                         }//, >                         //do_something(data) >                         ); >                 return false; >         }); > > Jonathan > > > > Mark wrote: > > I used "$(document).ready(function() { > >            $("from#myfrom").submit(fun

Re: [jQuery] Re: How can i make a timer that i can stop with jquery?

2009-11-13 Thread Mark
ion working but without displaying the countdown: var countdown = setTimeout(function(){ form.submit(); }, 5000); $("body").append("cancel"); like that.. but how do i display the number after the "cancel" text? Thanx to all s

[jQuery] MultiFile Emulation

2009-12-16 Thread Mark
I'm trying to emulate the multifile plug-in (http://www.fyneworks.com/ jquery/multiple-file-upload/) with files stored on a server. This worked with the 1.24 version of the plug-in. I've upgraded to the 1.46 version and now it isn't working fully correctly. This is my relevant HTML: This i

[jQuery] jQuery ajaxStart() Event Handler

2009-12-16 Thread Mark
html load event, the 'loading...' message appears above the form. How can I separate the ajaxStart() event for two different Ajax methods on the same page? Cheers, Mark

[jQuery] Re: jQuery ajaxStart() Event Handler

2009-12-16 Thread Mark
error: function (msg) { // message to display on error }, complete: function () { // hide load message } }); Sometimes I just get in my own way! On Dec 17, 5:23 am, Mark wrote: > I have two Ajax methods in a page. The first handles the loading of > html conten

[jQuery] Re: jCorner problem?

2007-09-26 Thread Mark
On Aug 21, 6:42 pm, Stephan Beal <[EMAIL PROTECTED]> wrote: > On Aug 21, 9:58 pm, Mark <[EMAIL PROTECTED]> wrote: > > > This is the result I am expecting > > --http://www.augustine.com/images/test/expected.jpg > > . This is what I get --http://www.

[jQuery] Re: jCorner problem?

2007-09-28 Thread Mark
On Sep 27, 10:57 pm, "Mike Alsup" <[EMAIL PROTECTED]> wrote: > > Because of the nature of floats, I don't really see a universal > > solution. Wrapping an element or changing its position naturally > > would have a great affect on layout. > > I don't think this is a problem with floating the co

[jQuery] Superfish & embed flash object

2007-10-09 Thread Mark
upgraded to jquery 1.2.1 and superfish 1.3.1, however my style sheet is a modified version of an earlier vertical example (has it been modified for 1.3.1?). Thanks Mark

[jQuery] Re: Superfish & embed flash object

2007-10-10 Thread Mark
Thanks for the advice, works perfectly. Cheers Mark On Oct 10, 3:57 am, brianfidler <[EMAIL PROTECTED]> wrote: > I don't believe this has anything to do withSuperfishor jQuery. Try > adding the following code to your HTML where yourFlashmovie is > embedded: > > > &

[jQuery] Re: Superfish & embed flash object

2007-10-10 Thread Mark
Thanks for the advice, it working now. Cheers Mark On Oct 10, 3:50 am, cbs1918 <[EMAIL PROTECTED]> wrote: > For your embededflashobject set your wmode to transparent. > > On Oct 9, 9:50 am, Mark <[EMAIL PROTECTED]> wrote: > > > Hi Joel, > > &g

[jQuery] ajaxSend one call, many separate events

2007-10-10 Thread Mark
Let's say I have 10 icons on a web page. Clicking an icon will change it from it's colored version to it's gray scale version. Changing flag states if you will. Lets say, just for example, it takes 3 - 5 seconds for the icon to change because it has to wait on the server to process the request an

[jQuery] Re: ajaxSend one call, many separate events

2007-10-11 Thread Mark
nt prior to making the ajax call? > > eg. > $('.control').click(function(e){ > $(this)..// replace image with 'waiting' image > $.ajax(); // make ajax call > }); > > On Oct 10, 3:38 pm, Mark <[EMAIL PROTECTED]> wrote: > > > L

[jQuery] Re: ajaxSend one call, many separate events

2007-10-11 Thread Mark
k(function(e){ > $(this)..// replace image with 'waiting' image > $.ajax(); // make ajax call > }); > > On Oct 10, 3:38 pm, Mark <[EMAIL PROTECTED]> wrote: > > > Let's say I have 10 icons on a web page. Clicking an icon will change > >

[jQuery] Re: ajaxSend one call, many separate events

2007-10-11 Thread Mark
call, so why not simply replace the image > on the clicked element prior to making the ajax call? > > eg. > $('.control').click(function(e){ > $(this)..// replace image with 'waiting' image > $.ajax(); // make ajax call > }); > > On Oct 1

[jQuery] Re: Star rating plugin for 1.2?

2007-10-12 Thread Mark
Sorry for "reviving" this thread but i'm kinda stuck with this plugin. The plugin itself is working how it should work so there is not a issue there.. it's just that i want to do something that i find hard to do in this case. Thsi is what i try to do: 1. The user sees rating images and can cast a

[jQuery] Access "parent page" from ajax generated html

2007-10-12 Thread Mark
If I have a main page and a section of it generated by Ajax, how do I access an element in the main page from the section generated by Ajax? Or, in code speak: (how can I make something like this work) Remove Fredington

[jQuery] Access "parent page" from ajax generated html

2007-10-13 Thread Mark
It seems this post was deleted... Why? If I have a main page and a section of it generated by Ajax, how do I access an element in the main page from the section generated by Ajax? Or, in code speak: (how can I make something like this work) Remove Fredington

[jQuery] Re: Access "parent page" from ajax generated html

2007-10-14 Thread Mark
AIL PROTECTED]> wrote: > Apart from the fact that it's a manual action, what doesn't work with > the example code? > > On Oct 13, 3:23 pm, Mark <[EMAIL PROTECTED]> wrote: > > > It seems this post was deleted... Why? > > > If I have a main page and a sect

[jQuery] Re: Access "parent page" from ajax generated html

2007-10-15 Thread Mark
It did work! I will keep digging. Sorry for the premature post. On Oct 14, 6:35 am, Mark <[EMAIL PROTECTED]> wrote: > The example code there doesn't do everything it needs to test this > out. > I the part between the and needs to be > retrieved by ajax > > I gues

[jQuery] jquery 1.2.1 and form plugin

2007-10-20 Thread Mark
form plugin site. Thanks. Mark

[jQuery] problem with jquery

2007-10-24 Thread mark
Hi All, I am a new person to the world of jQuery. I am having a problem in my first program only. Please tell me what is wrong over here. My code is : $(document).ready(function() { $("a").click(function() { alert("Hello world!"); }); }); http://google.com";>go

[jQuery] Re: problem with jquery

2007-10-25 Thread mark
Thanks Rob. You were correct..its working fine now. On Oct 25, 12:55 am, "Rob Desbois" <[EMAIL PROTECTED]> wrote: > Mark, > > I think you are saving the document as rich text format (RTF). > Try pasting the code sample into notepad and save it from there. &g

[jQuery] Re: problem with jquery

2007-10-25 Thread mark
thanks Karl On Oct 25, 3:27 am, Karl Swedberg <[EMAIL PROTECTED]> wrote: > Hi Mark, > > Make sure you return false so that the link doesn't trigger the > default behavior (which is to go to the url): > > $(document).ready(function() { > $("a").clic

[jQuery] queue issue

2007-11-13 Thread Mark
that's what i don't want it to do. it must abort and start over again in such a case. i tried to add .$(obj).decueue() on serveral different places but that didn't seem to work. any idea's on how to do this? i searched this list for common issues but was unable to fine any. Thanx, Mark

[jQuery] Re: queue issue

2007-11-13 Thread Mark
round property) but the current color functions don't seem to be able to handle it... and now that highlightFade is working on it... guess i better use that one instead. 2007/11/13, Mark <[EMAIL PROTECTED]>: > Hey, > > i've just got this working: > >

[jQuery] Updating webcam image

2007-12-14 Thread mark
Does anyone know a function to update a webcam image on a webpage (jquery style).?

[jQuery] Autocomplete: matching on only part of the displayed text rather than entire row

2007-12-19 Thread Mark
applied only to the bird's name rather than to the entire text string (which also includes the id, or taxonomic name of the bird). For example: Search for "cap" returns: Blackcap (id: Sylvia atricapilla) Search for "syl" returns: Could someone please point out where this logic resides? Thanks, Mark

[jQuery] replace missing image (onerror)

2007-12-22 Thread mark
I used to add an onerror even handler to img src tags to prevent images which do not show up. Is there a way to do this in Jquery?

[jQuery] Kwick type horizontal accordion with jquery ?

2007-12-25 Thread Mark
Hey everyone! Happy holidays. Ive been on a 3 day hunt for a horizontal accordion that functions almost identically to the one offered by mootools. An example of this type of accordion can be see on the mootools homepage (http:// www.mootools.net) . I want to use jquery or any other structure

[jQuery] Javascript question: Get elementid inside an element

2007-06-01 Thread Mark
e id: 0011 without the document thing? i tried this: var test = document.getelementbyid('001'); alert(test.getelementbyid(0011).InnerHtml); but that isn`t working. I hope someone could help me with this. (above code is not tested) Thanx in favor, Mark

[jQuery] Re: Javascript question: Get elementid inside an element

2007-06-01 Thread Mark
Could you also post the non jquery code? (i just would like to know :)) 2007/6/1, Juha Suni <[EMAIL PROTECTED]>: Well id's really should always be unique. But if you really want to do this, try: alert($('#001').children('#0011').html()); - Original Mes

[jQuery] Re: Javascript question: Get elementid inside an element

2007-06-02 Thread Mark
it`s unlikely but possible for an id to be in the page for more than once.. i will try to avoid it :) And thanx for the reply`s. it has been very helpfull. 2007/6/1, Sean Catchpole <[EMAIL PROTECTED]>: As stated, the document.getElementById will only work on document, and will only return the

[jQuery] Re: Really nice Ext Grid

2007-06-02 Thread Mark
damn that stuff looks nice!! i would like to have the tooltips from that page in a seperate jquery extension :) and the menu. 2007/5/31, John Farrar <[EMAIL PROTECTED]>: Michael Stuhr wrote: > > Erik Beeson schrieb: >> Maybe this isn't news, but these are the sweetest grids I've ever >> seen,

[jQuery] sortable:how to with tables?

2007-06-17 Thread Mark
sorry for the late reply but i`m having the exact same issue here. anyone willing to help us out with this? 2007/3/1, Stefan Kilp [sk-software] < [EMAIL PROTECTED]>: hi, i tried to test interface sortables with a table structure which doesn't realy work. is there a chance to get it running wit

[jQuery] Re: sortable:how to with tables?

2007-06-18 Thread Mark
to display the tr isn't really a bug. I had a similar problem a while back and in the end I found the only real option I had was to replace the table with a different data structure (I used an ol) and then simulate the table cells by subdividing each line with styled spans. On Jun 17, 11:1

[jQuery] run javascript through the address bar on a site

2007-06-22 Thread Mark
Hey, This question is not but related to jquery but to javascript. i hope this is the right place for that aswell. On some sites that i visit there are some annoying ads which can be "blocked" by changing there style to: display: none; to do this in javascript itself you need to do something like

[jQuery] Re: run javascript through the address bar on a site

2007-06-22 Thread Mark
On Jun 22, 9:03 am, Mark <[EMAIL PROTECTED]> wrote: > Hey, > > This question is not but related to jquery but to javascript. > i hope this is the right place for that aswell. > > On some sites that i visit there are some annoying ads which can be > "blocked" by c

[jQuery] strange behaviour with jquery and forms plugin

2007-07-12 Thread Mark
recognized by IE, lacks of POST data on server side. So, no matter it was on the array, it can't be used anyway. Maybe I need to initialize something?? PS: All 9 forms are equal, they are created in an smarty foreach loop. Thanks in advance Mark.

[jQuery] Problem with jQuery + Dimension plugin + Autocomplete plugin + Float

2007-07-14 Thread Mark
if ($.browser.msie)... Anyone knows why it is happening? ...maybe I am doing something wrong with the floats... If this is an IE bug, maybe could be fixed in the dimensions plugin. Thanks Mark.

[jQuery] Re: Problem with jQuery + Dimension plugin + Autocomplete plugin + Float

2007-07-15 Thread Mark
you an example. Where can I download the latest version of dimensions ? Thanks Mark On 15 jul, 00:36, "Brandon Aaron" <[EMAIL PROTECTED]> wrote: > Actually, what version of the autocomplete plugin are you using. It looks > like the latest depends on the dimensions plugin. P

[jQuery] Re: Problem with jQuery + Dimension plugin + Autocomplete plugin + Float

2007-07-17 Thread Mark
e latest from SVN from google code > here:http://jqueryjs.googlecode.com/svn/trunk/plugins/dimensions/ > > -- > Brandon Aaron > > On 7/15/07, Mark <[EMAIL PROTECTED]> wrote: > > > > > > > Hi Brandon, > > I am using the rc1 version of the dimensions plu

[jQuery] Resizable textarea

2007-07-17 Thread Mark
Does anyone could combine a textarea with a Drag and Resize plugin to create a Resizable Textarea. (A feature like this is available in TinyMCE). Thanks. Mark

[jQuery] Re: Problem with jQuery + Dimension plugin + Autocomplete plugin + Float

2007-07-20 Thread Mark
. Bye! On 17 jul, 16:45, "Brandon Aaron" <[EMAIL PROTECTED]> wrote: > Could you still send me an example of the issue you are having? > > -- > Brandon Aaron > > On 7/17/07, Mark <[EMAIL PROTECTED]> wrote: > > > > > > > I've downloa

[jQuery] droppable getting position of dropped element relative to the dropped div

2008-11-18 Thread mark
hi on the call back of drop function i get the ui element with which i can get the following position.. # ui.position - current position of the draggable helper the above is relative to the div from which it was dragged # ui.absolutePosition - current absolute position of the draggable helper

[jQuery] ajaxifying the whole site

2008-12-23 Thread mark
hi a lot of sites are ajaxifying the complete site for example facebook.com, orkut.com with their url structure being #new_request.php?... can i use jquery to do something like this?

[jQuery] malformed url with getJSON

2008-12-25 Thread mark
meter is created. Is there someway to prevent jQuery from creating that extra parameter, or is this a bug? Thanks in advance for any help. Mark

[jQuery] Re: getJSON invalid label

2008-12-25 Thread mark
jrutter, I am having a similar issue with the Yahoo music api. In my case jQuery is replacing the url: http://us.music.yahooapis.com/artist/v1/list/published/popular?response=main&appid=myappid&format=json&callback=? with http://us.music.yahooapis.com/artist/v1/list/published/popular?respon

[jQuery] Show/Hide Toggle Table

2009-01-10 Thread mark
Hey Guys, I'm new to jquery, and haven't much experience with javascript. I'm trying to toggle a few rows on a table with a show/ hide. Is this possible with a table or do I need to rewrite my view using divs? $(document).ready(function() { // hides the slickbox as soon as the DOM is ready //

[jQuery] Re: Show/Hide Toggle Table

2009-01-10 Thread mark
anging it to a class (or adding an > iterator to each ID). > > Sorry if this isn't the right answer? > Cherry. > > On Jan 10, 1:06 pm, mark wrote: > > > Hey Guys, I'm new to jquery, and haven't much experience with > > javascript. I'm trying t

[jQuery] stock price ticker plugin?

2009-01-14 Thread mark
hi guys, i am looking for a stock price ticker plugin, that will change color of the price green or red, and also change in real time. do you guys know any plugins or any other suggestions for this? thanks

[jQuery] jQuery.validate not working properly?

2009-02-14 Thread Mark
If I leave all the fields blank, the errors show up as they should. But if I correctly fill out even just one of them, the form gets submitted. Why is this happening? Here's the JS: $(document).ready(function() { $("form").validate({ rules: { emai

[jQuery] Append images to div from JSON

2009-02-16 Thread mark
I am trying to append images to a div from a json file, but a don't see the images. They look broken, but the references are ok. What is wrong here? http://www.sionvalais.com/v2/js/ jq.js"> $(document).ready(function(){ $.getJSON("[jQuery] Re: jQuery.validate not working properly?
Ah, I totally forgot to reply to this. This fixed the problem, thank you so much! Mark On Feb 15, 5:18 am, Jörn Zaefferer wrote: > The minLength doesn't exist, its minlength. What happens is that an > error as thrown, and instead of stopping the submit, it just submits. > To deb

[jQuery] clone of an element to be dropped draggable

hi i want to a clone of an element to be dropped and dragged. i am using the standard jquery 1.3 and jquery ui 1.7. i tried the helper clone option. it creates a clone when dragged, but when it is dropped it just reverts back to the original position. but i want a clone also to be dropped. for ex

[jQuery] Superfish - Bug with fix

nWidth) { emWidth = o.minWidth; } to... if ((emWidth * 1) > (o.maxWidth * 1)) { emWidth = o.maxWidth; } else if ((emWidth * 1) < (o.minWidth * 1)) { emWidth = o.minWidth; } Works great with that fix. Thanks for a great script. Mark

[jQuery] Superfish on roids second top level row problem (z-index?)

hello, I want to use this menu but i have so many main items that there are 2 rows. The first row is always on top. How can i get the second level menu to be on top of the fisrt item menu-item1 menu-item2 menu-item3 menu-item4 menu-item5 menu-item6 menu-item7 menu-item8 menu-item9

[jQuery] drag drop, and store dropped location

hi all i want to be able to drag elements and drop it, and then store the location where it was dropped, so that i can make the drag drop persistent. i saw the jquery ui draggable library, but how do i get the dropped location? thanks!

[jQuery] Re: onClick prepend

else { (global.eval) ? global.eval(onClickAttr) : eval(onClickAttr); } } }); }); On Jan 30, 3:11 pm, "Mark T" <[EMAIL PROTECTED]> wrote: > I am trying to make the on-click event of any element optional dependin

[jQuery] Re: onClick prepend

t: "0x8057000c (NS_ERROR_XPC_BAD_OP_ON_WN_PROTO)" location: "JS frame :: http://localhost/tests/onclickPrepend.html :: anonymous :: line 20" data: no] http://localhost/tests/onclickPrepend.html Line 20 What is that? Mark On Jan 31, 12:02 pm, Mark <[EMAIL PROTECTED]> wrote:

[jQuery] Re: onClick prepend

Anyone have any ideas at all on this problem? Our deadline is approaching fast! I think that the click() function attached to the DOM element must be the DOM level 2 stuff. Any ideas? Maybe there is a different approach I can try? Man, I wish IE wasn't such a pain! On Feb 1, 8:08 am,

[jQuery] Tool tip advice

Hey all, the design team here has a grid/table layout, with each image in a cell causing a tooltip style popup. Ok so, no worried so far, BUT, for the last column, the tool tip flips it's orientation so it doesn't display over the page border. So image a 2x4 table, which images in each cell. Eac

[jQuery] Re: Tool tip advice

f so, I know the tooltip > plugin (http://plugins.jquery.com/project/tooltip) detects the browser > border and avoids it. > > On Feb 21, 3:08 pm, Mark <[EMAIL PROTECTED]> wrote: > > > Hey all, > > > the design team here has a grid/table layout, with each image in a

[jQuery] Dynamically Filter List

Hi... so I'm new to jQuery. I'm using it to dynamically filter a list... I'm wondering if this is the best/most efficient method to go about doing it: jquery test $(document).ready(function() { var arr = ['C+ +','D','HTML','CSS','C#','PHP','Pyt

[jQuery] Re: Dynamically Filter List

Ahh.. this is a much better implementation! Thank you so much! Mark On May 5, 2:22 am, Wizzud <[EMAIL PROTECTED]> wrote: > Depends what you want the list to finally contain (as opposed to being > visible, that is). > Here's an alternative... > > $(document).ready(func

[jQuery] Javascript of jQuery?

Hi, first post here ... I have searched and cant find an answer to this but I'm sure it's been asked before ...anyway, here goes: I have only a rudimentary grasp of javascript but I'm very interested in jQuery - so, is it better for me to learn Javascipt first and then jQuery Or is it feasible

[jQuery] Re: Javascript of jQuery?

Thanks for all the advice guys. I think I'll get 'Simply Javascript' from sitepoint - or something similar - and start from there. I've got loads of programming experience so I spose I 've got a head start on a total noob! Cheers Mark. On May 19, 12:32 am,

[jQuery] Re: Javascript of jQuery?

Hey Karl, Thanks for posting ... I've taken your advice and order the Jeremy Kieth book ... Yours is next on the list! Cheers, Mark. On May 19, 1:04 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote: > Another great one for people just starting out with JavaScript is > Jeremy Keit

[jQuery] Why is this simple thing not working..??

d my way from there but just need a little push in the right direction :) Thanx, Mark

[jQuery] Re: Why is this simple thing not working..??

Got it working with this: function Hovertest() { this.timeoutRunning = false; this.hover = function() { if (!this.timeoutRunning) { this.timeoutRunning = true; alert('true...'); } else { alert('JEAAA FALSE');

  1   2   3   >