[jQuery] Javascript question: Get elementid inside an element

2007-06-01 Thread Mark
possible) So how do i get the 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 Message - *From:* Mark [EMAIL

[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, even

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

2007-06-18 Thread Mark
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:15 pm, Mark [EMAIL PROTECTED] wrote

[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
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 changing there style to: display: none; to do

[jQuery] strange behaviour with jquery and forms plugin

2007-07-12 Thread Mark
in advance Mark.

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

2007-07-14 Thread Mark
with 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] 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 downloaded the latest version of dimensions and still having the same problem (anyway

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

2007-07-30 Thread Mark
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 remote activator. Or, if you're feeling adventurous you could do it yourself. It would be a fairly signifcant mod however, since

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

2007-08-06 Thread Mark
Hi Brandon, I am using pixels, and in some cases % for widths. (most of them 100%) The problem not happens in Explorer 7, only in explorer 6. On 20 jul, 23:51, Brandon Aaron [EMAIL PROTECTED] wrote: Are you using units other than pixels for anything? -- Brandon Aaron On 7/20/07, Mark

[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

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

2007-09-01 Thread Mark
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... script type=text/JavaScript $(document).ready(function(){ $('#loadImg').show(); var fCallback = function(){ $('#loadImg').hide(); } $(#show).load(file.php,

[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, The code used at http

[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() {

[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
'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] Please help: How to simulate a Tab key press with jQuery

2007-09-15 Thread Mark
, 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
is 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] 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.augustine.com/images/test/actual.jpg . I am using

[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 cornered div,

[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: param name=wmode value=transparent

[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, I am usingsuperfishon a page with an embededflashobject, the menu

[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

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

2007-10-11 Thread Mark
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: Let's say I have 10 icons on a web page. Clicking an icon will change it from it's colored

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

2007-10-11 Thread Mark
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 it from it's colored version to it's gray scale version. Changing flag states if you will. Lets

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

2007-10-11 Thread Mark
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 10, 3:38 pm, Mark [EMAIL PROTECTED] wrote: Let's say I have 10 icons on a web page. Clicking an icon

[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) html img id=removeMeAfterAjax src=images/fredington.jpg / div id=AjaxHolder

[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) html img id=removeMeAfterAjax

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

2007-10-14 Thread Mark
, Wizzud [EMAIL 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 section of it generated by Ajax, how do I access

[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 !-- BEGIN -- and !-- END -- needs to be retrieved by ajax I guess I could put

[jQuery] jquery 1.2.1 and form plugin

2007-10-20 Thread Mark
in the 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 : htmlhead script type=text/javascript src=jquery.js/script script type=text/javascript $(document).ready(function() {

[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. Once that works, make sure

[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).click(function() { alert(Hello world

[jQuery] queue issue

2007-11-13 Thread Mark
searched this list for common issues but was unable to fine any. Thanx, Mark

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

2007-12-19 Thread Mark
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: none 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) downloads/docs/blogs/trac. I want to use

[jQuery] Re: onClick prepend

2008-01-31 Thread Mark
) ? global.eval(onClickAttr) : eval(onClickAttr); } } }); }); /script input type=button id=clickTester onclick=alert('Original Action Performed.'); value=Do It! On Jan 30, 3:11 pm, Mark T [EMAIL PROTECTED] wrote: I am trying to make the on-click event of any

[jQuery] Re: onClick prepend

2008-02-01 Thread Mark
prototype object nsresult: 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: Ok

[jQuery] Re: onClick prepend

2008-02-02 Thread Mark
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, Mark

[jQuery] Tool tip advice

2008-02-21 Thread Mark
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.

[jQuery] Re: Tool tip advice

2008-02-22 Thread Mark
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 cell causing a tooltip style popup. Ok so, no worried so far

[jQuery] Dynamically Filter List

2008-05-03 Thread Mark
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: html head titlejquery test/title script type=text/javascript src=js/jquery-1.2.3.min.js/ script script

[jQuery] Re: Dynamically Filter List

2008-05-09 Thread Mark
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(function() { var arr = ['C+ +','D

[jQuery] Javascript of jQuery?

2008-05-18 Thread Mark
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

[jQuery] Re: Javascript of jQuery?

2008-05-19 Thread Mark
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, Josh Nathanson [EMAIL PROTECTED

[jQuery] Re: Javascript of jQuery?

2008-05-19 Thread Mark
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 Keith's DOM Scripting

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

2008-05-31 Thread Mark
push in the right direction :) Thanx, Mark

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

2008-05-31 Thread Mark
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');

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

2008-06-01 Thread Mark
2008/6/1 Peter [EMAIL PROTECTED]: Hi Mark, You don't need to wrap the hover function in an object. Instead you can use the hover function itself to store the static variable. In that case you don't need to set timeoutRunning before the first call as it is == undefined then. I did

[jQuery] jQuery allow encoding into json?

2008-06-05 Thread Mark
could not find a function for it. Will be creating a complicated js object on client side. Want to encode that object into json, and stuff the value into a hidden form field for POST. anybody help a nubie?

[jQuery] hiding a div on document ready?

2008-06-07 Thread mark
hi, am just beginning with jquery, and i want to hide a div to begin. i tried this and it doesnt work and it is not hidden. do you know what is wrong? i also tried, $(durl).css(display,none); is this wrong? thanks html head script type=text/javascript

[jQuery] validate works in firefox 3, but not in IE 7

2008-06-07 Thread mark
hi, i have a simple form with validation that works really well in firefox3 / 2 but not in IE7. this is the html, how to debug or find what is wrong?? thanks !doctype html public -//W3C//DTD HTML 4.01//EN http://www.w3.org/TR/html4/strict.dtd; html head title title /title script

[jQuery] Re: validate works in firefox 3, but not in IE 7

2008-06-07 Thread mark
i meant validation does not work. form gets submitted even if the input fields are not valid and empty in IE7, but it works in firefox 3 and 2... On Sat, Jun 7, 2008 at 4:54 PM, mark [EMAIL PROTECTED] wrote: hi, i have a simple form with validation that works really well in firefox3 / 2

[jQuery] datepicker setDate

2008-06-07 Thread mark
hi, how do i correctly choose a default date using the datepicker. i am using v3.4.3. datepicker/ i can get the date picker working with the default date of today like this $('#date').datepicker(); where date is an input text field with id date. but if i do this

[jQuery] Ugly fade in IE?

2008-06-09 Thread Mark
, the escape key words in Firefox but not in IE... IE doesn't seem to be getting the keydown event at allcan I fix this? Thanks! Mark

[jQuery] Re: Ugly fade in IE?

2008-06-10 Thread Mark
the blockUI plugin, which doesn't have this problem? On Jun 9, 7:44 am, Mark [EMAIL PROTECTED] wrote: Hi guys, I'm trying to make a log in form fade in using jQuery.  It looks great in Firefox, but produces weird results in IE.  You can view it live athttp://city-demos.com/ Here's

[jQuery] Re: datepicker setDate

2008-06-11 Thread mark
On Mon, Jun 9, 2008 at 4:20 AM, andrea varnier [EMAIL PROTECTED] wrote: On 8 Giu, 05:36, mark [EMAIL PROTECTED] wrote: but if i do this $('#date').datepicker(setDate, new Date ( January 6, 1972 )); try adding curly braces, to define an object, like this: $('#date').datepicker

[jQuery] load pre-rendered html

2008-06-11 Thread mark
hi i want to have a set of pre-rendered html loaded into a div dynamically.. the .load() function gets it from a remote url. is it possible to load from a javascript variable/ that is pre-rendered in to the current html somehow? thanks

[jQuery] Re: validate works in firefox 3, but not in IE 7

2008-06-11 Thread mark
OK, thanks.. that fixed the problem!!! On Mon, Jun 9, 2008 at 2:40 PM, Jörn Zaefferer [EMAIL PROTECTED] wrote: You've got a trailing comma error, see eg. http://www.pluralsight.com/blogs/fritz/archive/2007/06/19/47771.aspx Jörn On Sun, Jun 8, 2008 at 1:57 AM, mark [EMAIL PROTECTED] wrote

[jQuery] How do i display a tooltip from a hidden div?

2008-06-19 Thread Mark
real thing i can find all the time is loading it in from ajax or using the title attribute.. both won't work for me. Any help would be nice. Thanx, Mark

[jQuery] Why do i keep getting: test is not defined!

2008-06-19 Thread Mark
hey, function removeItem(name, obj) { var answer = confirm(Are you sure you want to delete: + name + ?) var test = obj; if (answer) { $(test.parentNode.parentNode).fadeOut(slow); } } the code is simple and still not working.. the issue is that i try to call a

[jQuery] Re: Why do i keep getting: test is not defined!

2008-06-19 Thread Mark
removeItem('myitem', myobject); // obj is defined -- Josh - Original Message - From: Mark [EMAIL PROTECTED] To: jquery-en@googlegroups.com Sent: Thursday, June 19, 2008 4:02 PM Subject: [jQuery] Why do i keep getting: test is not defined! hey, function removeItem(name, obj

[jQuery] Re: Why do i keep getting: test is not defined!

2008-06-20 Thread Mark
will take a look at that unobtrusive javascript but any suggestions for good docs about that? -- Josh - Original Message - From: Mark [EMAIL PROTECTED] To: jquery-en@googlegroups.com Sent: Thursday, June 19, 2008 4:13 PM Subject: [jQuery] Re: Why do i keep getting: test is not defined

[jQuery] Re: Why do i keep getting: test is not defined!

2008-06-20 Thread Mark
just want it to work with href as well! On Fri, Jun 20, 2008 at 12:44 PM, Liam Byrne [EMAIL PROTECTED] wrote: How are you calling removeItem ? It needs two parameters - the name and the object reference. Liam Mark wrote: hey, function removeItem(name, obj) { var answer = confirm

[jQuery] Re: How do i display a tooltip from a hidden div?

2008-06-20 Thread Mark
please... On Thu, Jun 19, 2008 at 10:42 PM, Mark [EMAIL PROTECTED] wrote: Hey, I've spend the last few hours very trying to find a tooltip plugin that can just show a hidden div when i move my mouse over a link. I've looked at clueTip and that has nearly what i need. The clueTip sticky

[jQuery] clueTip request: content option

2008-06-21 Thread Mark
').cluetip({content: 'This is a tooltip'}); that would show a simple tooltip with the text: 'This is a tooltip' This would really solve all my tooltip problems and is probably suitable for a lot of other people as well. Thanx, Mark

[jQuery] Internet Explorer 6 Not Running Code

2008-07-13 Thread Mark
Hi, I'm not sure whether this is where to post this, but I have some jquery code that runs in FF but is not executing in IE6. function LoadFields() { if(this.id) { //some code } else // first load { // build the HTML

[jQuery] Re: BlockUI Plugin Doesn't Unblock in IE 6/7

2008-07-20 Thread Mark
Dear Syam, That solved it! Thank you for catching that. On Jul 20, 3:16 pm, Syam [EMAIL PROTECTED] wrote: Please check your HTML. It's missing a closing div (put a /div just before /form) Hope that helps! -Syam On Jul 20, 1:17 am, Mark [EMAIL PROTECTED] wrote: Hi, I'm

[jQuery] BlockUI Plugin Doesn't Unblock in IE 6/7

2008-07-21 Thread Mark
Hi, I'm not the first person to post this problem: http://groups.google.com/group/jquery-en/browse_thread/thread/4c60ce58e256afb5/1538fee2d0db4d21?show_docid=1538fee2d0db4d21 http://www.nabble.com/Problem-with-blockUI-plugin-td17185345s27240.html and not sure whether this is the best forum in

[jQuery] drag drop, and store dropped location

2008-10-25 Thread mark
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] 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
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=mainappid=myappidformat=jsoncallback=? with

[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: script type=text/javascript $(document).ready(function() { $(form).validate({ rules: {

[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? body script type=text/javascript src=http://www.sionvalais.com/v2/js/ jq.js/script script type=text/javascript $(document).ready(function(){

[jQuery] Re: jQuery.validate not working properly?

2009-02-25 Thread Mark
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 joern.zaeffe...@googlemail.com wrote: The minLength doesn't exist, its minlength. What happens is that an error as thrown, and instead of stopping the submit, it just

[jQuery] clone of an element to be dropped draggable

2009-03-08 Thread mark
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

[jQuery] Superfish - Bug with fix

2009-03-30 Thread Mark
) { 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?)

2009-04-21 Thread Mark
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] 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

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

2009-06-02 Thread Mark
On Mon, Jun 1, 2009 at 9:46 PM, Mark mark...@gmail.com 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 part of the core

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

2009-06-05 Thread Mark
On Tue, Jun 2, 2009 at 10:48 PM, Ralf Stoltzeralf.stol...@googlemail.com 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 think

[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

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

2009-06-14 Thread Mark
/ On Jun 13, 8:37 pm, Mark markjtur...@gmail.com 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, but here's what I've got and it doesn't

[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

[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 help

  1   2   3   >