[jQuery] Re: jQuery Nesting Tables

2009-07-25 Thread nullstring
oh grace god, someone replied. thanks @FrenchiNLA here's the generated .NET html code   PrinterProcessPackageTypeLeadTime Edit View AlcanGr

[jQuery] Re: Form values getting unsynchronized after ajaxsubmit [validate]

2009-07-25 Thread anoop
After several attempts, I have been able to consistently reproduce this problem. It appears that this is an issue with the ajaxSubmit in the form plugin and only in firefox (latest version), IE 7 does not seem to have this issue. The issue occurs in firefox only; when a page with multiple forms i

[jQuery] Re: Check if movie (.mp4) is finished

2009-07-25 Thread 刘永杰
how does touch it finished? 2009/7/26 Sam Sherlock > I think you'd have to load a swf and have that call back to the page (via > ex interface) when its completed > hth - S > > > 2009/7/25 Eswip > > >> Hi everyone, >> >> I'm using the jQuery Media Plugin to play a movie (.mp4) on a page >> when

[jQuery] Re: Form values getting unsynchronized after ajaxsubmit [validate]

2009-07-25 Thread anoop
After several attempts, I have been able to consistently reproduce this problem. It appears that this is an issue with the ajaxSubmit in the form plugin and only in firefox (latest version), IE 7 does not seem to have this issue. The issue occurs in firefox only; when a page with multiple forms i

[jQuery] Re: Looking for expand/collapse tree directory navigation

2009-07-25 Thread 刘永杰
dhtmlxtree,it is very good. 2009/7/26 Magnificent > > Hello, > > I'm looking for an expanding/collapsing tree directory type of > navigation and was wondering if someone knows of a good one that's out > there and available. > > What I'm specifically looking for is one that is triggered on the >

[jQuery] Re: Check if movie (.mp4) is finished

2009-07-25 Thread Sam Sherlock
I think you'd have to load a swf and have that call back to the page (via ex interface) when its completed hth - S 2009/7/25 Eswip > > Hi everyone, > > I'm using the jQuery Media Plugin to play a movie (.mp4) on a page > when a button is clicked. But I want to remove the from the > DOM when th

[jQuery] Setting identical events to multiple elements using a for loop

2009-07-25 Thread Blake
On my site, I have some click-able spans (will be referred to as toggle spans) that show or hide other spans (that contain the content I want on my site; will be referred to as content spans). The layout of these spans is like this: -- Span 1 - Span 2 - Span 3 Span 1 content. Span 2

[jQuery] accessing iframe content

2009-07-25 Thread kknaru
hi there, i just started working with iframes and i'm stucked :D so...i have this code inside a html file: text what i'm trying to do is to grab that paragraph text(using jquery). by now i tried something like this: $("#myframe").contents().find("p").html(); butwith no result

[jQuery] Check if movie (.mp4) is finished

2009-07-25 Thread Eswip
Hi everyone, I'm using the jQuery Media Plugin to play a movie (.mp4) on a page when a button is clicked. But I want to remove the from the DOM when the movie is finished. Is this possible? And in what way? I searched on the group here and googled, but I found nothing. Regards, Eswip

[jQuery] Re: Fade in a div, push the div below down

2009-07-25 Thread Blake
Are you talking about the slideToggle effect? http://docs.jquery.com/Effects/slideToggle A quick download-able example I made that demonstrates what I think you're looking for (sliding up and hiding a div while the div below it also moves up) can be found here: http://willhostforfood.com/?Actio

[jQuery] Ajax + XML

2009-07-25 Thread Phil
Scenario: I have the following code to load XML into my DOM but I would like to load one specific node of the xml (by the id attrib) (using a url parameter) the xml parameter (variable 'epParameter'). $(function() { $.ajax({ type: "GET", url: "e

[jQuery] Re: Fade in a div, push the div below down

2009-07-25 Thread adrianemile
Found another example. The mootools plugin Fx.Slide http://demos.mootools.net/Fx.Slide The vertical one with the toggle option is exactly what I want.

[jQuery] Re: appendCache issue in tablesorter with IE7/IE8

2009-07-25 Thread postme
bump anyone? On Jul 21, 6:18 pm, postme wrote: > Hi everybody, > > I'm using the tablesorter plugin with the zebra widget and I've run > into an > issue with IE8. I'm setting a number of tablerow (tr) elements to > invisible > and then run a tablesorter update + appendCache action to make sure

[jQuery] Re: Fade in a div, push the div below down

2009-07-25 Thread adrianemile
An example would be this site: http://www.teehanlax.com/work/ Click the button: Watch it You will then see a new div with their reel being fade'd and slided over the works div. The works div gets pushed down about 200px. Can anyone point me in the right direction?

[jQuery] Looking for expand/collapse tree directory navigation

2009-07-25 Thread Magnificent
Hello, I'm looking for an expanding/collapsing tree directory type of navigation and was wondering if someone knows of a good one that's out there and available. What I'm specifically looking for is one that is triggered on the click of a *graphic* that toggles the show/hide. Each text nav item

[jQuery] Re: UI TABS - Best Practices

2009-07-25 Thread brian
I've done something similar and, while it works, it took a bit of head-scratching to get things working properly. The biggest thing was ensuring that newly-loaded content was "initialised" on load. The admin page contains: I have a separate admin.js with admin-only routines. $(function

[jQuery] Re: PNGFixes are breaking SuperFish in IE6...SUPRISE!

2009-07-25 Thread Matt
This problem now seems to be even more widespread. I installed just a basic, pure, CSS dropdown menu and even it does not work with Supersleight, UnitPNGfix or even jQuery's pngfix. GRR On Jul 24, 3:44 pm, Matt wrote: > I've tried a few different PNGFixes thinking that maybe the problem > was un

[jQuery] Re: Multiple Phone Fields

2009-07-25 Thread FrenchiINLA
I don't know about validte plugin, but you can easily check your condition with jquery. for example you can add the same starting id to your text fields something like txt_Phone_bus, txt_Phone_Cell, txt_Phone_Home then you can check for the value of those fields with $('imput[type=text][id^=txt_Ph

[jQuery] Re: jQuery Nesting Tables

2009-07-25 Thread FrenchiINLA
Could you provide your html code generated by .net? it would help, but in general rule you don't have to check existence of an element to apply action to it. Jquery disregard the action if it doesn't exist. For your example: $('tbody[tr:last][td][table]', $(this)).remove(); will work if it can fin

[jQuery] Re: newbie question.

2009-07-25 Thread Aleksey
Well, it's a common pattern that is used when creating a jQuery plugin. A common problem doing that is the use of a '$' sign, because other frameworks use it too as well. I didn't try to use some frameworks simultaneously yet, so I didn't encountered that problem by myself. One of the way is to us

[jQuery] Re: simplemodal plugin - close modal dialog by button/link whatever

2009-07-25 Thread method8
just found out - you have to apply "simplemodal-close" class to your button On Jul 25, 6:32 pm, method8 wrote: > I can't seem to close my modal dialog except when using the close > button. > > I want to do a search dialog box, that closes as soon as the user > presses search (rather than press s

[jQuery] simplemodal plugin - close modal dialog by button/link whatever

2009-07-25 Thread method8
I can't seem to close my modal dialog except when using the close button. I want to do a search dialog box, that closes as soon as the user presses search (rather than press search and then the close button) I created my search box like this: $("#search").click(function(){ $("#searchB

[jQuery] Re: Parsing a complicated JSON file with JQUERY !

2009-07-25 Thread Walther
I think your problem is that you don't have a firm grasp of javascript objects or object notation in general. JSON is just a method of transfering javascript objects in a text format. jQuery automatically converts the JSON string into a javascript object if you tell it to (Look at the documentati

[jQuery] Re: jQuery Nesting Tables

2009-07-25 Thread nullstring
Please help? On Jul 25, 10:12 pm, nullstring wrote: > Hi, > > In my last row (parent Table) with colspan(tr), I have another Table > (without any.attributes) which was generated by GridView, Paging > enabled and located in footer .. > > How do I know if that Table exists in my last row(parent Ta

[jQuery] newbie question.

2009-07-25 Thread Kris
What does this do? (function($) { do some stuff } )(jQuery);

[jQuery] superfish menu centering - no fixed width

2009-07-25 Thread theGrimm
Hi I'm trying to center a horizontal superfish menu with a flexible width in a div container with 980px width but i can't get it to work with margin:0 auto; any tips or tricks ? thnx 4 help

[jQuery] jQuery Nesting Tables

2009-07-25 Thread nullstring
Hi, In my last row (parent Table) with colspan(tr), I have another Table (without any.attributes) which was generated by GridView, Paging enabled and located in footer .. How do I know if that Table exists in my last row(parent Table).. this code won't work .. if(jQuery(this).is('table')) {

[jQuery] Multiple Phone Fields

2009-07-25 Thread kmac
Hi, I have a form with three text fields: Business Phone Cell Phone Home Phone One of the fields must be filled. Using jquery.validate.js how do I check for this? Thanks in advance for any help.

[jQuery] Re: help with an animation effect

2009-07-25 Thread leofromrio
Sorry, my last post was incomplete. I've changed the code to keep it cleaner and more relevant to your question. Please, keep in mind I'm not a developer and the code is probably not up to snuff. :P HTML CONTENT HERE show hide CSS #container {

[jQuery] Re: changing style attributes.

2009-07-25 Thread Charlie
understanding how the basic animations functions in jQuery helps. $("#something").show() jQuery uses amendments to the element syle attribute to make this happen. So in your example $("#this=thing&that=more&bing=bang").show() will override the display:none If as you say you are doing this d

[jQuery] Re: Modify tabbed interface

2009-07-25 Thread Charlie
theme is using jQuery UI tabs that have effects options built in, perhaps they would make it easier for you. There is a google group for UI support also if you have difficulty http://jqueryui.com/demos/tabs/ Aleksey wrote: Hello, everyone) I've read a tutorial describing creating simple

[jQuery] Re: jQuery Selectors

2009-07-25 Thread Charlie
make this  simpler by adding a class like "menuActive" to the opened ul. Since you will only ever have one of that class open you can slide that class up and remove the class name before applying the same class to new panel to open // in click or hover function to switch panels $(".menuActive

[jQuery] Re: Superfish

2009-07-25 Thread Charlie
you would be best off researching this on a Joomla forum. yvonne wrote: OK. I am not very skilled with Joomla and I need help installing Superfish. I tried on my local version to upload the ZIP file but I get an error message"Could not find an XML setup file in this package. Path does not

[jQuery] Re: How to deterine number of words in a string?

2009-07-25 Thread CarComplaints.com
With regular expressions, it's simpler than all this .. you can count letter groups that are split up by anything that's not a letter or a digit. var string = $("span.string").text(); var mresult = string.match(/\w+/g); alert(mresult.length); On Jul 24, 8:41 pm, Lukas Lt <1luk...@gmail.com>

[jQuery] jQuery Selectors

2009-07-25 Thread iceangel89
i am actually doing a accordion/sliding menu. here, i want to slide up sibling li > ul that has been open (or displayed). can i simplify this further? $(this).parent("li").siblings("li:has(ul)").children("ul").slideUp ("fast"); i also noticed that i cannot skip the children() part and do som

[jQuery] Re: Using Queue

2009-07-25 Thread Old Orange Juice
JavaScript that loads more JavaScript?? I've had trouble with this on IE where ajax would load HTML that had Javascript tags and evaluate the javascript.. the getElementsByTagName would not return elements with the "

[jQuery] Re: (Cycle Plugin) ScrollHorz problem in FF and Safari 3

2009-07-25 Thread Mike Alsup
On Jul 21, 9:51 pm, bcbounders wrote: > When using the ScrollHorz effect in the Cycle Plugin for inline HTML > content, in Firefox and Safari 3, the very first time you trigger the > transition, the content of the first "slide" appears to be being > squished and ends up overlapping with the incom

[jQuery] UI TABS - Best Practices

2009-07-25 Thread SteveM
I've implemented an admin console that has about 5 ajax-enabled tabs on a JSP. Each tab displays info from different areas of the system. Authorized users see an edit button. Some edits can be multiple pages. Fully integrating multi-page UI tabs requires a lot of considerations. I'm interested in

[jQuery] Re: Cycle Plugin: Pause the cycle from link withing the cycling content?

2009-07-25 Thread Mike Alsup
> > I have set up a cycle that contains a html contentent including a > 'video playlist'. This is a javascript based list that updates a flash > video player with a new video inside the cycle. The videos are loading > fine, but for some reason when i call the cycle 'pause', it dosent > work? > > i

[jQuery] slide and fade

2009-07-25 Thread RajD
I need jquery solution so that I can slide and fade a div. The div will have a open and close hyperlink which needs to be toggled between. But after each toggle I need to hide and show some html elements. For example when a user clicks the open link the div slides open and hides some images and t

[jQuery] Fade in a div, push the div below down

2009-07-25 Thread adrianemile
Hi. I want to make one div appear by the click on a link, and the div below the appeared one has to be pushed down some pixels. So if I click the link inside the top div: Show new div The div below: Gets pushed down maybe 100px. Its like changing the margin-top: 0px; to 100px on the div:

[jQuery] Modify tabbed interface

2009-07-25 Thread Aleksey
Hello, everyone) I've read a tutorial describing creating simple tabs: http://www.sohtanaka.com/web-design/simple-tabs-w-css-jquery/ But I want to modify it, and cannot achieve the desired result, and that result can be seen at one template: http://themeforest.net/item/maven-portfolio-wordpress/4

[jQuery] Re: find() not working in Firefox

2009-07-25 Thread Lukas Lt
cant you use origanal html' 'html to be replaced $('#original').html ($('.new').html ()); $('#new').delete(); if you don need it anymore. On 24 Lie, 15:56, Sourabh wrote: > Thanks for your help > > Ok I have  a scenario like this - > > I have an array with > > ['origanal html' ]['html to be r

[jQuery] Re: Which editor is best for inplace HTML

2009-07-25 Thread Lukas Lt
Try CKeditor http://ckeditor.com/ It is the newest (yet RC) version of famous FCK editor. As far as I have used it, no problems at all :) Check put new skin they created :) On 24 Lie, 22:35, Steve Hueners wrote: > I'm hoping someone can help me narrow down the field > according to these prioriti

[jQuery] PNGFixes are breaking SuperFish in IE6...SUPRISE!

2009-07-25 Thread Matt
I've tried a few different PNGFixes thinking that maybe the problem was unique to one particular fix, but unfortunately all PNGFixes are breaking my menu. Basically, without the PNGFix, the menu works fine. But, as soon as the PNGFix loads, I lose my hover ability and naturally the dropdown featur

[jQuery] Ajax parsererror

2009-07-25 Thread TCoakley
I am attempting a fairly easy ajax call within a zend framework, but am getting a parseerorr. I have validated the xml and will show that below. No js errors are being thrown. The ajax call: $(function() { $('#AjaxListAnchor').click(function() { $.ajax({ ty

[jQuery] Superfish

2009-07-25 Thread yvonne
OK. I am not very skilled with Joomla and I need help installing Superfish. I tried on my local version to upload the ZIP file but I get an error message"Could not find an XML setup file in this package. Path does not have a valid package." So obviously I am doing something wrong. Please help!!

[jQuery] Cannot "load" google API intensity map with jquery

2009-07-25 Thread Mark in A2
Relatively inexperienced. I'm creating a dashboard using some of the Google visualizations. Want to do a selective refresh of certain pieces of the dashboard based on user action (rather than a full page reload). Was hoping to use jquery for this, but when I try to use in combination with the G

[jQuery] Superfish - Tabbing through menu when it's a nested ul causes the menu to disappear

2009-07-25 Thread Jeremy
I'm testing the accessibility of the Superfish menu by tabbing through it. My setup is such that the sf-menu is nested within an li of another ul. The first time tabbing through, everything works as expected. But, once you've tabbed away from the last item in the menu, the menu disappears. Her

[jQuery] Re: How to deterine number of words in a string?

2009-07-25 Thread Lukas Lt
Well you can replace '!, into spaces and then count Also I'd do a loop and remove empty elements (if multiple paces was in text) before counting. On 24 Lie, 13:25, Raju wrote: > Hi > > i want a jquery plugin to view word files, > > can somebody help me out in this regards > > Warm Regards, > >

[jQuery] changing style attributes.

2009-07-25 Thread Old Orange Juice
OK, been banging my head with this for a while. I have a dynamic site where we get a list of elements from the database, we identify these items with id numbers and encoded get strings. So I'm trying to get style changes to take affect with jquery and it really just doesn't work. I'm not sure wha

[jQuery] tablesorter, numeric sort of anchor values

2009-07-25 Thread mila
Hi, I am new to jquery and tablesorter. Please help me with this. I have my table that displays counts. When users clicks on the count they are taken to another window. I need to sort my columns by that count, i.e numeric sort. How would I do that? P1 P2 42 9 45 789 I am the one who buil

[jQuery] tablesorter, sort values in anchor as numerics

2009-07-25 Thread mila
I have data that looks like that 23 9 I need it to be sorted numericaly by values between >. How do I do that?

[jQuery] Re: Using Queue

2009-07-25 Thread Lukas Lt
Why not to simply place them into of the page They will be loaded in the same order as you put them into head Or use http://plugins.jquery.com/project/jquery-plugins to dynamically load them On 24 Lie, 18:52, shaf wrote: > Hi Guys > > I have 4 scripts I want to load and insert into the html. S

[jQuery] Modify tabbed interface

2009-07-25 Thread Aleksey
Hello, everyone) I've read a tutorial describing creating simple tabs: http://www.sohtanaka.com/web-design/simple-tabs-w-css-jquery/ But I want to modify it, and cannot achieve the desired result, and that result can be seen at one template: http://themeforest.net/item/maven-portfolio-wordpress/4

[jQuery] Re: ajaxStart() and ajaxStop(): Any way to know the type of the request?

2009-07-25 Thread Mike Alsup
> Is there any way to accomplish that? Other than setting the callback for > each individual request. You could use ajaxSend instead of ajaxStart.

[jQuery] Re: help with an animation effect

2009-07-25 Thread leofromrio
Sorry, my last post was incomplete. I've changed the code to keep it cleaner and more relevant to your question. You will need to restructure the CSS to fit your page. HTML CONTENT HERE show hide CSS #container { width: 180px; min-h

[jQuery] Re: help with an animation effect

2009-07-25 Thread leofromrio
Hi, Robert. I've tackled this issue recently and I can post something that worked out reasonably well for me. I used it for a login box that slides down once the user clicks on the tab. You should be able to restructure it to fit your site. Please keep in mind I'm not a developer and the code is