[jQuery] clone() + Sortable and Draggable

2009-07-17 Thread rejome
Hello everyone ! I am facing a strange problem here : http://rejome.homeip.net:8080/prototype.html When I clone a list that is part of a Sortable, the Draggable objects are not bound to the cloned list, only the original one. Do you have a solution or a hint for me please ? Thanks in advance.

[jQuery] Re: Disabling Button in jQuery HTML Form Plugin

2009-07-17 Thread icuucme
Form Page: form id=htmlForm action=html-echo.asp method=post Name: input type=text name=name value=Hello HTML / Comment: input type=text name=message value=Hello HTML / input type=submit value=Echo as HTML / /form JAVAscript: $(document).ready(function() { $('#htmlForm').ajaxForm({

[jQuery] Re: Disabling Button in jQuery HTML Form Plugin

2009-07-17 Thread Theodore Ni
Perhaps success: function() { var ht = $('#htmlExampleTarget'); ht.fadeIn('slow'); if (ht.html().indexOf('Success') = 0) { $('#htmlForm :submit').val('Success').attr('disabled', true); } } Ted On Fri, Jul 17, 2009 at 3:06 AM, icuucme deron.tava...@gmail.com wrote:

[jQuery] jQuery Form plugin with Yahoo UI

2009-07-17 Thread debussy007
Hi, When I add the jquery.form.js plugin from malsup, my Yahoo UI TreeView won't render anymore ... There seems to be some conflict. Is there any workaround for that ? Thank you for any help. -- View this message in context:

[jQuery] Re: My new website AllJobsXChange.com developed with Jquery

2009-07-17 Thread Theodore Ni
Sounds great that your site is getting ready to launch. The notice page, from what I see, seems to work fine at least :-). Just as a point of professional interest, with your doctype the meta/ tags should have their own ending forward slashes. You seem to know this, so maybe your CMS is preventing

[jQuery] Re: show dynamic changes when a refresh occurs

2009-07-17 Thread Theodore Ni
James has some good ideas. If they still don't work for you, you can consider storing the new form values in a cookie. Ted On Thu, Jul 16, 2009 at 7:42 PM, James james.gp@gmail.com wrote: The data is still there since the browser does a cache of the form info, but dynamically created

[jQuery] get height from hidden element

2009-07-17 Thread David
Hi, my problem is, when I try to get the height or any other graphic property of an element which is hidden (in my case, hidden in one jQuery UI tab), I can't manage to get the height of the element. If I do: $(#my_element).outerHeight() I get zero. Whereas If I do the same when the element is

[jQuery] Re: My new website AllJobsXChange.com developed with Jquery

2009-07-17 Thread RobG
On Jul 17, 11:19 am, son sco0...@yahoo.com wrote: Hi. My website,www.alljobsxchange.comwas developed with the use of JQuery. Yet another site using an XHTML doctype served as text/html, even to browsers that understand XML. The W3C validator found 62 errors: URL:

[jQuery] superfish arrows only on sub menus

2009-07-17 Thread Jacques Choquette - WhistlerGraphicDesign.com
anyone know how to modify the superfish script so the auto generated arrows only appear on the sub menus?

[jQuery] get hover function behave right

2009-07-17 Thread runrunforest
Hi, I want to animate the width and height of image when hovering it, and when i stop the image's state back to normal. My problem is, the image's state not back to normal when mouseout. here is my code $(function(){ $('img').hover(function(){ var curwidth =

[jQuery] animation is getting slower.

2009-07-17 Thread weidc
hi, i was just playing around today with some animations. this is my code (js): $(#boden).mousemove(function(e) { var pageCoords = ( + e.pageX + , + e.pageY + ); var clientCoords = ( + e.clientX + , + e.clientY + ); $(span:first).text(( e.pageX, e.pageY ) -

[jQuery] Re: animation is getting slower.

2009-07-17 Thread Nick Fitzsimons
2009/7/17 weidc mueller.juli...@googlemail.com: this is my code (js): $(#boden).mousemove(function(e) snip                $(this).click(function() snip it is just moving a little div in an other div to the point where you clicked. it works pretty well but after 20-30 clicks the animations

[jQuery] Re: animation is getting slower.

2009-07-17 Thread weidc
yep yep. already got it some mins after my post. working fine without mouseover. thank you. :) On 17 Jul., 13:02, Nick Fitzsimons n...@nickfitz.co.uk wrote: 2009/7/17 weidc mueller.juli...@googlemail.com: this is my code (js): $(#boden).mousemove(function(e) snip                

[jQuery] Re: jQuery Form plugin with Yahoo UI

2009-07-17 Thread debussy007
The problem has been solved ... I forgot to close the script tag of the plugin js inclusion ... debussy007 wrote: Hi, When I add the jquery.form.js plugin from malsup, my Yahoo UI TreeView won't render anymore ... There seems to be some conflict. Is there any workaround for that ?

[jQuery] Re: get hover function behave right

2009-07-17 Thread Mean Mike
I think your problem has to do with scope int hat curwidth and curheight can only be seen inside the first function if you pass them in to the second function some how or set them as global values then you'll be ok Mean Mike On Jul 17, 5:59 am, runrunforest craigco...@gmail.com wrote: Hi, I

[jQuery] Re: clone() + Sortable and Draggable

2009-07-17 Thread Mean Mike
I found a least one major problem here $(#champs).append($(#champs_caches).clone(true).removeClass(ui- helper-hidden)); your cloning div with id #champs_caches thereby creating another div with the same id there may be more problems than that but get that fixed then lets go from there Mean

[jQuery] any yone know how biocompare styled the thickbox

2009-07-17 Thread SeanthePaddy
click signin on biocompare.com anyone know how i can do similar ? tnx sean

[jQuery] JQuery XML and FusionCharts

2009-07-17 Thread JD
Hi guys, I have an AJAX request which passes back some xml data, at the moment I am only interested in one of the nodes, so I do var onlyChartData = jData.find (chart); This appears to work fine as I can $(xmldiv).append (onlyChartData); and it's appends it to the div. However I cannot alert

[jQuery] Re: any yone know how biocompare styled the thickbox

2009-07-17 Thread Mean Mike
I wouldn't use thickbox I would use jquery-ui.dialog but if you want to use thick box I suggest downloading thickbox and maybe looking at the documentation Mean Mike On Jul 17, 9:23 am, SeanthePaddy cliffords...@gmail.com wrote: click signin on biocompare.com anyone know how i can do

[jQuery] Re: JQuery XML and FusionCharts

2009-07-17 Thread Mean Mike
can we see what you get back or can you put up a sample page ? Mean Mike On Jul 17, 9:32 am, JD odonovan.jo...@gmail.com wrote: Hi guys,     I have an AJAX request which passes back some xml data, at the moment I am only interested in one of the nodes, so I do var onlyChartData = jData.find

[jQuery] Re: any yone know how biocompare styled the thickbox

2009-07-17 Thread Liam Potter
it's just a lot of CSS changes, just like building any web element. Mean Mike wrote: I wouldn't use thickbox I would use jquery-ui.dialog but if you want to use thick box I suggest downloading thickbox and maybe looking at the documentation Mean Mike On Jul 17, 9:23 am, SeanthePaddy

[jQuery] Fade in and then fade out element when using slideToggle

2009-07-17 Thread P
I have a div (#slide-panel) which is hidden by default (display:none) but shows up when a button (.slide) is clicked. Inside the div I have a h3 which also is hidden by default (display:none) but fades in as the div slides out. Here's the code: $(.slide).click(function(){

[jQuery] Set Element Position

2009-07-17 Thread NoMatter
Hi Guys , Its my first time here. My Question is .. When a button click , I need to change the positions of few DIVs . How do I assign X and Y . I saw there is a way of get Element's X , and Y but how to Setting X and Y . Thanks in advance,

[jQuery] [ treeview ] lazy ajax with unique

2009-07-17 Thread Dan
Hello i use treeview plugin with lazy ajax. if use unique option it reload all items of current level that has children, when open one of item. so it could be about 20 ajax queries at one time. is it possible to set one open click one query?

[jQuery] Menu display problem in Superfish

2009-07-17 Thread neel
Hi, When the number of menus (including a menu and its submenus) reach a particular number, then after that rest of the menus are not getting displayed. Is there any settings available to restrict number of menus in superfish? Regards, Nilanjan

[jQuery] Large file upload problem for form plugin

2009-07-17 Thread Gustavs
Hello. I'm using jQuery form plugin and there seems to be a problem with files larger then approximately 10mb. If I try to upload a file that's smaller then that it does everything correct, but if it's larger then it just returns empty $_POST and empty $_FILES. Any ideas on what may be the

[jQuery] select draggable

2009-07-17 Thread sken
Trying to get the draggable ui working with a multiple select field, but doesn't work. Does it actually work with option fields ? $(select option).draggable(); it adds the ui-draggable class to the options fields, but they are not draggable :(

[jQuery] draggable with select field

2009-07-17 Thread sken
Trying to get the draggable ui working with a multiple select field, but doesn't work. Does it actually work with option fields ? $(select option).draggable(); it adds the ui-draggable class to the options fields, but they are not draggable :(

[jQuery] Input that allows only numbers.

2009-07-17 Thread Caio Landau
Well, that a simple question, I hope. I have an input (input type=text /) on my page, and I want it to only accept numbers, so if the user types anything that's not a number, it will be removed instantly. A simplified example just to illustrate: body input type=text name=numbers / !-- I want

[jQuery] Problems with two Superfish menus

2009-07-17 Thread Germanico Brismal
Hi guys, I had a problem when I tried to use two Superfish menus. This problems just occur when I use Internet Explorer 6. Please, visit this URL to see the screenshot that explain everything. My HTML doesn't have any special structure to cause this problem. Can someone give me some idea about

[jQuery] Re: Dynamic Links

2009-07-17 Thread Pradeep Chandrasekaran
Hi Brian, This returns the id perfectly, but how to overlay for each id?? On Jul 13, 8:16 pm, brian bally.z...@gmail.com wrote: That looks like a mix of PHP javascript. Try this: ?php for($x = 0; $x $items.length; $x++) { ?         trtda href=# class=Whatever rel=?= $items[$x].id ?

[jQuery] Replace an element with only opening or close element tag

2009-07-17 Thread Evert
Hi there, I am a newbie at using jquery and now I stumbled upon a problem. With Jquery I want to replace each hr/ with a div opening tag or a / div closing tag. This way I would like to place a large page of content in different divs. Now I have this code : var counter = 0; for(var i = 0; i

[jQuery] Re: Dynamic Links

2009-07-17 Thread Pradeep Chandrasekaran
Hi mnaveed, Am also looking for the same solution. If you have overcome with this problem, pl. let me know the solution. Thanks, Pradeep On Jul 12, 9:46 pm, mnaveed mnaveed...@gmail.com wrote: Hi, I am new to JQuery, can anyone help how to generate dynamic links. I have a loop which

[jQuery] Re: slideUp(), slideDown() not working in IE 6, 7 on LI elements

2009-07-17 Thread Leonardo K
I tried several approaches here and the animation bug in IE remains. I don't know if it's a bug. Post this thread on the dev group. On Thu, Jul 16, 2009 at 14:29, Bill bllfr...@gmail.com wrote: Is the best way forward to just rewrite the HTML so that it uses DIV elements instead of UL and

[jQuery] Re: jquery ui dialog get element from button

2009-07-17 Thread Carlo Landmeter
I will try that ones I have tackled the following issue. I keep having issues with dialog because the dialog is created before i use the .click function. Because of this i cannot change some options of the dialog. For instance: If i click the button i am able to retrieve the id of this button

[jQuery] Re: File uploader with preview like box.net, etc.?

2009-07-17 Thread MorningZ
You'll see stuff like this leveraging Flash, because Flash is an application on the end user's computers that have permissions to view user's files on their computer, which is driving that preview functionality JavaScript wouldn't have the ability to do anything with the file location

[jQuery] Re: Detecting a redirect response to an Ajax query

2009-07-17 Thread candlerb
Many thanks for your input - this is now working perfectly. For the benefit of the archives: - In the server, where the session expiry is detected, I check for XMLHttpRequest (request.xhr? in Rails) - If so, I send back a 403 instead of the redirect to the login page - At the client side, I have

[jQuery] Re: any yone know how biocompare styled the thickbox

2009-07-17 Thread SeanthePaddy
mike thanks for suggestion - i may go and look at dialog out of interest why would u use that ? what are the pros and cons for each ? tnx sean On Jul 17, 3:36 pm, Mean Mike mcgra...@gmail.com wrote: I wouldn't use thickbox I would use jquery-ui.dialog but if you want to use thick box I

[jQuery] Re: Input that allows only numbers.

2009-07-17 Thread Matt Zagrabelny
On Thu, 2009-07-16 at 16:12 -0700, Caio Landau wrote: Well, that a simple question, I hope. I have an input (input type=text /) on my page, and I want it to only accept numbers, so if the user types anything that's not a number, it will be removed instantly. A simplified example just to

[jQuery] Re: Detecting a redirect response to an Ajax query

2009-07-17 Thread eimantas
another solution would be to launch a client-side javascript timeout function that redirects user to login/signup page after session validity time has passed (say, 15 minutes). this way user wouldn't need to be redirected after clicking a link. in one site i saw a similar solution: - user opens

[jQuery] Re: show dynamic changes when a refresh occurs

2009-07-17 Thread Terry
Thanks for the ideas. The onbeforeunload event sounds like what I need. I did try the hidden field already. As you guessed it does not work; you need to get the data to know how many fields to create dynamically and then it is too late to have the dynamic fields filled in I'm guessing. Now I

[jQuery] Re: any yone know how biocompare styled the thickbox

2009-07-17 Thread Mean Mike
I tried using thickbox and didn't like it there was some bigger reason why i didn't like it i just don't remember what it was now its been awhile now. I am already using jquery-ui for other things so it seemed logical as well that I should stick with ui thereby keeping the code tighter Mean Mike

[jQuery] Re: get height from hidden element

2009-07-17 Thread amuhlou
Perhaps you can try grabbing the element's height just before you initiate tabs (assuming you're not pulling in the tabs via ajax)? On Jul 17, 5:47 am, David garcia.narb...@gmail.com wrote: Hi, my problem is, when I try to get the height or any other graphic property of an element which is

[jQuery] Re: jquery ui dialog get element from button

2009-07-17 Thread Mean Mike
Carlo, jQuery /javascript is procedural so you just need to move things around like this [code] $(document).ready(function(){ $(#dialog).dialog({ autoOpen:false, modal:true, overlay: {backgroundColor: #000,opacity: 0.5},

[jQuery] Re: Input that allows only numbers.

2009-07-17 Thread Caio Landau
So let me get it, key's code numbered between (and including) 48 and 57 are numbers? Ok, I got it, thank you :) On Jul 17, 11:18 am, Matt Zagrabelny mzagr...@d.umn.edu wrote: On Thu, 2009-07-16 at 16:12 -0700, Caio Landau wrote: Well, that a simple question, I hope. I have an input (input

[jQuery] Re: Get the HTML of the current node plus its Inner HTML

2009-07-17 Thread bittermonkey
Theordore, The function worked like a charm. Thanks man and for everyone who pitched in. On Jul 16, 5:11 pm, Theodore Ni zyl...@gmail.com wrote: I was going to work on a proof of concept, but then I had the idea to see if anyone else has already implemented this. Sure enough, Brandon Aaron

[jQuery] Re: draggable with select field

2009-07-17 Thread Mean Mike
I'm pretty sure you need to use it with ulli or olli I don't think you can use a select box if you don't need to to be sortable then i would recommend something like having two select boxes and moving them over something like this [code] //these are two buttons $('#add').click(function() {

[jQuery] Re: draggable with select field

2009-07-17 Thread Mean Mike
btw please don't double post On Jul 17, 11:50 am, Mean Mike mcgra...@gmail.com wrote: I'm pretty sure you need to use it with ulli or olli I don't think you can use a select box if you don't need to to be sortable then i would recommend something like having two select boxes and moving them

[jQuery] Re: Set Element Position

2009-07-17 Thread Mean Mike
I think this is what your looking for http://www.west-wind.com/Weblog/posts/517320.aspx found with quick google search Mean Mike On Jul 16, 10:18 pm, NoMatter usbh...@gmail.com wrote: Hi Guys , Its my first time here. My Question is .. When a button click , I need to change the positions

[jQuery] Re: Set Element Position

2009-07-17 Thread Liam Byrne
GET x=$(#elementName).offset().left; y=$(#elementName).offset().top; SET $(#anotherElementName).css({left:x,top:y}); NoMatter wrote: Hi Guys , Its my first time here. My Question is .. When a button click , I need to change the positions of few DIVs . How do I assign X and Y . I saw there

[jQuery] Re: Replace an element with only opening or close element tag

2009-07-17 Thread Liam Byrne
If you do what you're thinking, then every second content element would be OUTSIDE of any div What (I think) you need to do is: FIRST hr/ : OPEN DIV LAST hr/ : CLOSE DIV EVERY IN-BETWEEN hr/ CLOSE DIV FOLLOWED BY OPEN DIV If you don't do all of those in a single step, however, I'd suspect

[jQuery] Re: Input that allows only numbers.

2009-07-17 Thread Matt Zagrabelny
On Fri, 2009-07-17 at 08:45 -0700, Caio Landau wrote: So let me get it, key's code numbered between (and including) 48 and 57 are numbers? I used an alert dialog to determine the keycodes, you could probably also use an ascii chart. You also may want to include the codes for: backspace arrow

[jQuery] Re: Dynamic Links

2009-07-17 Thread brian
On Fri, Jul 17, 2009 at 3:34 AM, Pradeep Chandrasekaranpradeep@gmail.com wrote: Hi Brian, This returns the id perfectly, but how to overlay for each id?? That depends on the overlay code. There are many ways to do that. If you have a function for positioning the overlay and loading the

[jQuery] Re: ajaxStart() ajaxStop() problem

2009-07-17 Thread Cesar Sanz
Maybe the ajax in not firing again... Have you checked the ajax calls with firebug? besides, are you using IE for this? Think IE catch ajax calls when using $.get or $.load .. try $.post or $.ajax - Original Message - From: Jedrin jrubia...@gmail.com To: jQuery (English)

[jQuery] Re: Input that allows only numbers.

2009-07-17 Thread Cesar Sanz
try this http://www.texotela.co.uk/code/jquery/numeric/ - Original Message - From: Caio Landau wonho...@gmail.com To: jQuery (English) jquery-en@googlegroups.com Sent: Friday, July 17, 2009 9:45 AM Subject: [jQuery] Re: Input that allows only numbers. So let me get it, key's code

[jQuery] Re: get height from hidden element

2009-07-17 Thread Charlie
there are methods explained in UI tabs docs how to handle this amuhlou wrote: Perhaps you can try grabbing the element's height just before you initiate tabs (assuming you're not pulling in the tabs via ajax)? On Jul 17, 5:47am, David garcia.narb...@gmail.com wrote: Hi, my

[jQuery] Re: Replace an element with only opening or close element tag

2009-07-17 Thread Charlie
might consider using a filter to locate the elements between the hr's and use wrapAll(), then remove the hr's Liam Byrne wrote: If you do what you're thinking, then every second content element would be OUTSIDE of any div What (I think) you need to do is: FIRST hr/ : OPEN DIV

[jQuery] Re: Menu display problem in Superfish

2009-07-17 Thread Charlie
there are no restrictions in superfish script or default CSS. To test I've created as many as 8 levels of subs. More than likely your issues are related to your CSS. Is this a Joomla or other CMS install? neel wrote: Hi, When the number of menus (including a menu and its submenus)

[jQuery] Re: get height from hidden element

2009-07-17 Thread amuhlou
good point, Charlie. http://docs.jquery.com/UI/Tabs#Why_does... On Jul 17, 12:37 pm, Charlie charlie...@gmail.com wrote: there are methods explained in UI tabs docs how to handle this amuhlou wrote:Perhaps you can try grabbing the element's height just before you initiate tabs (assuming

[jQuery] Re: get hover function behave right

2009-07-17 Thread runrunforest
make the curwidth and curheight variables global, could you help me?

[jQuery] Re: getScript() issue under ie6 (undefined variable)

2009-07-17 Thread Olivier
Well, I have tried with real ie6 under windows XP and I get the same error. It seems the script is not executed. Could it be a jquery bug ? On 14 juil, 14:32, Olivier the.fuz...@gmail.com wrote: Hi, I'm usinggetScriptto load a script which basically contains a variable, and then i'm using

[jQuery] Newbie Question....

2009-07-17 Thread raisputin
Hello, I have just discovered jQuery and it looks cool. I used the jQuery UI builder at ui.jquery.com to build the UI and it looks and works great :) Unfortunately I do not know enough about javascript to answer my own question, so I am deferring to you :) I would like to have a tab with a

[jQuery] disable click event while dragging (sortable)

2009-07-17 Thread Christopher
Hello Everybody! Does somebody know how deactivate the click event on a dragable item while dragging. I tried to unbind the click event on start, and bind it again on stop. but the initial click (=toggle) is still fired. Thx everybody! i hope i made my problem clear ;/ chris var $sortable =

[jQuery] Re: show dynamic changes when a refresh occurs

2009-07-17 Thread James
The ideal way is to only show the popup alert when the user actually has modified something on the form. So if the user visit the page, does nothing, hits refresh, the alert should not pop up. If it does it'll annoy the user. Add it only when the form info is changed, and the user is not

[jQuery] Re: Newbie Question....

2009-07-17 Thread brian
Do you want the form to submit via AJAX? Have a look at the form plugin. http://malsup.com/jquery/form/ On Fri, Jul 17, 2009 at 1:47 PM, raisputingreg.djr...@gmail.com wrote: Hello, I have just discovered jQuery and it looks cool. I used the jQuery UI builder at ui.jquery.com to build the

[jQuery] Re: Newbie Question....

2009-07-17 Thread Greg Evans
That looks great, and I think it is just what I need. I want to clarify however, this shows to comment.php, but something like comment.pl should work equally as well correct? On Jul 17, 2009, at 11:28 AM, brian wrote: Do you want the form to submit via AJAX? Have a look at the form

[jQuery] Allow iframe from remote domain have javascript access

2009-07-17 Thread Mike521
Hi all, I'm trying something along these lines: my domain = example.com external domain = otherExample.com example.com/test.htm contains: iframe src=otherExample.com/test2.htm I want test2.htm to have access to the contents of test.htm. I can do this using selectors like $(p,top.document)

[jQuery] Re: addclass() only works with the first of the matched divs

2009-07-17 Thread Alexandre
that's it. thanks guys. On Jul 16, 8:13 pm, Cesar Sanz the.email.tr...@gmail.com wrote: Id must to be unique. So, jQuery just find one element with the specified Id, try to make id uniques - Original Message - From: Alexandre alexandre...@gmail.com To: jQuery (English)

[jQuery] AJAX load()

2009-07-17 Thread Phil
Here i have a problem: I am uing the AJAX load() and use it like this head script type=text/javascript src=JS/jQuery_Base.js/script script type=text/javascript src=JS/jQuery_getParams.js/script script type=text/javascript $(document).ready(function(){

[jQuery] replaceClass plugin now works on hover or click

2009-07-17 Thread intrinsi
Thanks to feedback about the first version of this plugin, I have added the ability to trigger it on click as well as hover. http://plugins.jquery.com/project/replaceClass Note: There is a switchClass effect in jQueryUI but it currently does not work in WebKit browers, like Chrome or Safari.

[jQuery] Re: data: $(#contact_form).serialize(),

2009-07-17 Thread robotwink
Hello, I tried for hours and no luck. Here's my code: http://stikked.com/view/4d9c1242 I would really appreciate if anyone can tell me why $ (#contact_form).serialize() is always returning empty string. On Jul 16, 2:26 pm, James james.gp@gmail.com wrote: Could you define not working?

[jQuery] Re: Newbie Question....

2009-07-17 Thread Theodore Ni
Yes, your action script can be anything. Ted On Fri, Jul 17, 2009 at 2:40 PM, Greg Evans greg.djr...@gmail.com wrote: That looks great, and I think it is just what I need. I want to clarify however, this shows to comment.php, but something like comment.pl should work equally as well

[jQuery] Re: flickering issue when using animate() in firefox

2009-07-17 Thread mm
Hi yea, i have come across this four or five times. as a stopgap i found that reducing the speed of the animation often helps, but it doesn't completely eliminate the problem and sometimes isn't an option. i havent found a solution yet though. i will try let you know if i come across one. On Jul

[jQuery] Bug jQuery 1.3.2 FF3.5 - $(input[name=''])

2009-07-17 Thread false
This code used to work before i upgraded to FF3.5. Is there any other way to achive the same thing? $(input[name=''],textarea[name='']).each(function(i) { this.name = this.id; });

[jQuery] Newbie Datepicker Question

2009-07-17 Thread sankofa
I have succesfully applied the datepicker to a blank textbox. However, when I apply the datepicker to a textbox with the initial value dynamically set to display a value from a database, the date picker genertes an error when anything on it is selected. The datepicker will display when the

[jQuery] Tooltip for hotspot (area shape)

2009-07-17 Thread e...@uitenbogaard.nl
Hi, I'am looking for a solution to use dynamic tooltips when mouse comes over a hotspot (several hotspots in an image). I like the tooltip on the homepage of this forum (http:// bassistance.de/jquery-plugins/jquery-plugin-tooltip/). - tooltip sticks to pointer - appears directly - fonts, colors

[jQuery] Re: data: $(#contact_form).serialize(),

2009-07-17 Thread Theodore Ni
It is because you get rid of the form when you replace the message inside #form before calling serialize(). Move this line $(#form).html('Please wait...'); below everything else, and serialize() will no longer return empty. Ted On Fri, Jul 17, 2009 at 2:54 PM, robotwink robotw...@gmail.com

[jQuery] Superfish drop down menu pushes down the content below

2009-07-17 Thread GraphicsUNC
Hello! This is a great extension and I have it so that it uses the css from the template I'm using. However, the drop down menu pushes down the main content below instead of hovering over or poping up. Here is the link - when you scroll over About Us or Services you will see what it does.

[jQuery] how to multiple images slideshow with jquery cycle plugin

2009-07-17 Thread AND
Hi , i am new to jquery cycle plugin I would like to make a multiple images slideshow with jquery cycle plugin Say I have 12 images and I want to show 3 at a time and cycle through the 12 in this fashion: (img1-img2-img3) then (img2-img3-img4) then (img3-img4-img5). (img11-img12-img1)

[jQuery] [autocomplete] mustmatch problem

2009-07-17 Thread rekna
I'm using jquery autocomplete 1.0.2. The autocomplete retrieves data from the server and the option mustmatch is set to true. My data on the server has a code field and a description, and I'm returning code+ +description|id an example of data returned by the server would be: FIN Finance|2 PER

[jQuery] Re: Slideup/down Multiple Divs

2009-07-17 Thread danny.copel...@gmail.com
Ok well - hope it all worked out for you! :| On Jul 15, 4:09 pm, danny.copel...@gmail.com danny.copel...@gmail.com wrote: var toggleCheckBox = function(){         if ($(this).find('.multCheck:checked').val() == 'on') {                 $(this).find(.addURLSArea).slideDown();         }

[jQuery] Re: AJAX load()

2009-07-17 Thread James
How about something like this: head script type=text/javascript src=JS/jQuery_Base.js/script script type=text/javascript src=JS/jQuery_getParams.js/script script type=text/javascript $(document).ready(function(){ $('input.load').click(function(){

[jQuery] Re: Newbie Datepicker Question

2009-07-17 Thread James
Is the initial value in the textbox in the same format the datepicker would put into the textbox if a date was selected? (e.g. 4/03/2010, and not 4/03/2010) On Jul 17, 8:30 am, sankofa ssank...@gmail.com wrote: I have succesfully applied the datepicker to a blank textbox. However, when I

[jQuery] Re: AJAX load()

2009-07-17 Thread Phil
:D Brilliant, thanks. I have tried this in some form but i couldn't get it to work. Thanks :) On Jul 17, 8:13 pm, James james.gp@gmail.com wrote: How about something like this: head script type=text/javascript src=JS/jQuery_Base.js/script script type=text/javascript

[jQuery] Re: Newbie Datepicker Question

2009-07-17 Thread James
Sorry, that should've been: (e.g. 4/03/2010, and not 04/03/2010) On Jul 17, 9:16 am, James james.gp@gmail.com wrote: Is the initial value in the textbox in the same format the datepicker would put into the textbox if a date was selected? (e.g. 4/03/2010, and not 4/03/2010) On Jul 17,

[jQuery] Re: non-ajax Post?

2009-07-17 Thread Theodore Ni
Your best option is to log on the server-side page the form submits to. Barring that, you can always submit the form on a callback from your $.get() call. Ted On Wed, Jul 15, 2009 at 4:26 PM, IMStarboard ttho...@local-motors.comwrote: There is a form that performs a post on our site that I

[jQuery] Re: Bug jQuery 1.3.2 FF3.5 - $(input[name=''])

2009-07-17 Thread MorningZ
i wonder if this would work $(input, textarea).not([name]).each() . On Jul 17, 9:58 am, false falseconversati...@gmail.com wrote: This code used to work before i upgraded to FF3.5. Is there any other way to achive the same thing?  $(input[name=''],textarea[name='']).each(function(i) {

[jQuery] Re: non-ajax Post?

2009-07-17 Thread James
What happens if you use $.ajax and set option async:false? It might stall the page a little, but try to see if it works. On Jul 17, 9:17 am, Theodore Ni zyl...@gmail.com wrote: Your best option is to log on the server-side page the form submits to. Barring that, you can always submit the form

[jQuery] Re: data: $(#contact_form).serialize(),

2009-07-17 Thread robotwink
Thank you so much, that solved the problem. On Jul 17, 3:04 pm, Theodore Ni zyl...@gmail.com wrote: It is because you get rid of the form when you replace the message inside #form before calling serialize(). Move this line     $(#form).html('Please wait...'); below everything else, and

[jQuery] Injecting tags to specific location.

2009-07-17 Thread pennfoli0
Hi, My CMS won't let me customize their HTML structure they didn't give me access to their templating system. But they'd let me access their Head section were I could add custom Javascript and CSS. Example this would be their template structure: body div id=wrapper div id=maincontent

[jQuery] Re: Tooltip for hotspot (area shape)

2009-07-17 Thread Charlie
have used it on area tags, no differennt than any other tag,, follow standard instructions e...@uitenbogaard.nl wrote: Hi, I'am looking for a solution to use dynamic tooltips when mouse comes over a hotspot (several hotspots in an image). I like the tooltip on the homepage of this forum

[jQuery] Re: Injecting tags to specific location.

2009-07-17 Thread James
I think something as simple as this should work: $(#maincontent, #left, #right).each(function() { var content = $(this).html(); $(this).html('div class=inject1div class=inject2div class=inject3'+content+'/div/div/div'); }); Might get a bit more complicated if there are other javascript

[jQuery] Re: Newbie Datepicker Question

2009-07-17 Thread sankofa
The initial value is not the same. It is coming from the database as a timestamp with the time date. There is no leading zero before the month.

[jQuery] Validate Plugin - using the submitHandler

2009-07-17 Thread pocket
I need to display a promotional message when the user clicks submit if they meet certain criteria about their postcode. I have heard that you should use the submitHandler but being completely new to JavaScript and even newer to JQuery I am a little stuck on how I should write this. I thought it

[jQuery] Re: Injecting tags to specific location.

2009-07-17 Thread Charlie
try this: $("#maincontent, .left , .right").prepend('div class="inject1"div class="inject2"div class="inject3"'); $("#maincontent, .left , .right").append('/div/div/div'); pennfoli0 wrote: Hi, My CMS won't let me customize their HTML structure they didn't give me access to their

[jQuery] I dont understand why this doesnt work.

2009-07-17 Thread Mike
Its simple: !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http:// www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd html xmlns=http://www.w3.org/1999/xhtml; head title/title script src=jquery.js type=text/javascript/script script type=text/javascript

[jQuery] Re: I dont understand why this doesnt work.

2009-07-17 Thread Michael Lawson
That shouldn't work at all. Unless your page is sitting at http://twitter.com http://en.wikipedia.org/wiki/Same_origin_policy cheers Michael Lawson Development Lead, Global Solutions, ibm.com Phone: 1-276-206-8393 E-mail: mjlaw...@us.ibm.com 'Whether one believes in a religion or not, and

[jQuery] event.preventDefault(); not working in IE

2009-07-17 Thread robotwink
Hello, I'm using IE8 and when I pass: event.preventDefault(); I get an error message: Webpage error details User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/ 4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30729; .NET CLR 3.5.30729) Timestamp: Fri, 17

[jQuery] Re: I dont understand why this doesnt work.

2009-07-17 Thread James
Maybe you should try using Twitter's API (with JSON) along with the jQuery's $.getJSON(). On Jul 17, 10:09 am, Mike mgor...@gmail.com wrote: Its simple: !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd; html

[jQuery] Cross Slide Pause on Mouseover

2009-07-17 Thread agaldesign
Hello, How do I make the images to pause on mouseover? Here is and example of my script: http://marshallsouthern.bigrigmedia.com/story.asp Thank You!!!

  1   2   >