[jQuery] Re: [autocomplete]

2009-12-20 Thread nKognito
This problem occures only in IE (I have tested on IE 7) On 19 дек, 21:01, nKognito vicmo...@gmail.com wrote: In your autocomplete plugin example (tags list): when a user types some word and then select the right one from the suggested list by keyboard - everything ok, BUT when he wants to

[jQuery] Re: Change Window Location, and Send REQUEST or POST Info?

2009-12-20 Thread Vik
That's a great tip. Thanks, Brian. I'll look into it. On Dec 19, 8:04 pm, brian zijn.digi...@gmail.com wrote: Just start a session by default for any user. Once the user has logged in, create a new session or simply write new values to it. When the user requests a page, some code of yours

[jQuery] Re: jQuery in e107 plugin?

2009-12-20 Thread Harsányi János
This sounds great :) One more problem: Can I extend the first jQuery with jQuery UI? On Dec 19, 9:31 pm, Richard D. Worth rdwo...@gmail.com wrote: After the second one is loaded you can get back to the first one using noConflict: http://docs.jquery.com/Core/jQuery.noConflict - Richard On

[jQuery] Validating and submitting form onKeyPress

2009-12-20 Thread Andre Polykanine
Hello everyone, I'm using the Validation plugin by Jörn. The form validates and submits correctly, everything is OK but... I want it to be validated and submitted by pressing Ctrl+Enter, also. So, when I go to the page and press the key combination, it does submit but doesn't validate. Where do I

Re: [jQuery] Load Superfish menu with AJAX

2009-12-20 Thread Charlie
following assumes superfish.js is loaded with initial page $("#mymenuContainer").load("mymenufile.xxx", function() { $(".sf-menu").superfish( {//my superfish options}); }); callback function will fire after the html loaded. Another method is to put the superfish constructor code at

[jQuery] Wrap question

2009-12-20 Thread David .Wu
I want to make a div div id=myDiv become table border=1trtd1/tdtd2/tdtd3/td/trtrtd4/ tdtddiv id=myDiv/tdtd6/td/trtrtd7/tdtd8/ tdtd9/td/tr/table This is my solution, but I want to ask for better one. /** * Wrap Table */ (function() { $.fn.dramaWrapTable = function($obj) {

[jQuery] Easy Fade in Problem...

2009-12-20 Thread Alex B
Anyone know why it's not fading in the content? It's fully functional, but it just doesn't fadeIn.. function addPerson() { //current keeps track of how many people we have. var strToAdd = 'div id=input class=ideaInputinput name=idea[] class=idea type=text/' strToAdd += 'textarea

[jQuery] Image ID in AREA.mouseOver

2009-12-20 Thread Roberta Bead
I am using the same image map with multiple images. Is there any way within $(AREA).mouseover(function(e){ }); to get the ID of the image that is currently moused over? e.target, e.currentTarget and e.relatedTarget don't seem to be reliable when trying to retrieve the ID of the image.

[jQuery] treeview - putting a hyperlink in source.php

2009-12-20 Thread Draxeiro
The async demo of treeview uses a file called source.php. In that file the various entries are listed in the following way (just showing text in the demo): text: 1. Pre Lunch (120 min), expanded: true, classes: important, children:

[jQuery] Re: Change Window Location, and Send REQUEST or POST Info?

2009-12-20 Thread aaronjacobstew...@gmail.com
Absolutely, you can create a form with hidden fields on the page that POSTS its values to the server, or you can initiate an AJAX request with the current page and store it server side in the session, or you can simply write the current pre-login page out to a cookie, and have the login page

Re: [jQuery] Re: Can Tooltip return a jsp page?

2009-12-20 Thread brian
On Sun, Dec 20, 2009 at 1:15 AM, HenryRock henryloke.myetr...@gmail.com wrote: Hi Brian, I get this  return jsp:include page='legend-table.jsp'/; How come? How to fix that? Like I said, your file is not being parsed correctly. JSP is a server-side technology. Any JSP code must be

[jQuery] Add class selected to a hyperlink in navibar! Help me.

2009-12-20 Thread Nguyen Phu Cuong
I have default.aspx page include some usercontrols menu.ascx and in default page i using jquery to add selected class to a link clicked function pageLoad() { $('#menu a').click(function() { $('#menu a').removeClass('selected');

Re: Re[2]: [jQuery] Re: What is the event when a user presses the enter key anywhere on the page?

2009-12-20 Thread Mishal Abdulah
From: Richard D. Worth rdwo...@gmail.com To: jquery-en@googlegroups.com Sent: Sunday, December 20, 2009 0:27:39 Subject: Re: Re[2]: [jQuery] Re: What is the event when a user presses the enter key anywhere on the page? Is it, thanks to normalization done by

Re: [jQuery] Easy Fade in Problem...

2009-12-20 Thread brian
Try putting the fadeIn() where the elements are being appended. Also, use hide() just before that. function addPerson() { //current keeps track of how many people we have. var strToAdd = 'div id=input class=ideaInputinput name=idea[] class=idea type=text/textarea name=description[]

[jQuery] Get the selected text and border it with tags

2009-12-20 Thread Andre Polykanine
Hello everyone, Say, we have an input box or a textarea. There are two words selected. I need to make them italic (i/i) if a button is clicked. I know about different approaches by browser (document.selection in IE vs. selectionStart and selectionEnd in FF). but isn't there a multibrowser method

[jQuery] Re: Get the selected text and border it with tags

2009-12-20 Thread Šime Vidas
Say, we have an input box or a textarea. There are two words selected. I need to make them italic (i/i) if a button is clicked. You want to put i elements inside input type=text / or textarea ? That's not possible... input is an empty element, and textarea only accepts character data..

[jQuery] Image animation for hover

2009-12-20 Thread frist44
I was trying to create an effect similar to how the images on this page expand when you hover: http://demos.dojotoolkit.org/demos/ script type=text/javascript $(document).ready(function(){ var img_width=$(#aboutus).attr(width); var img_height=$(#aboutus).attr(height);

[jQuery] Re: Add class selected to a hyperlink in navibar! Help me.

2009-12-20 Thread Šime Vidas
You should add that class on the server-side everytime you click on a link, a new page is loaded, so the current page is overwritten together with your jQuery code...

[jQuery] Overriding core functions

2009-12-20 Thread CasperJ
Hi, I'm trying to override some of the basic functions of jQuery. My code is based on this article: http://www.bennadel.com/index.cfm?dax=blog:1624.view What I want is to fx. hide some extra fields when a given type of field is hidden. If you for example tries to hide #bar and #bar has a css

[jQuery] some values is lost in opera and IE after ajax post

2009-12-20 Thread OctaneFX
This code works great in Firefox, but in IE or Opera, after send the form with wrong data, the html of #form is null, see line 77 in firefox line 77 print the form source, in Opera or IE print NULL the ideia of script is: - try to log in orkut - if success, reload some vars of index page and close

Re: [jQuery] navigation with word based links instead of numbers - jcarousel with external controls

2009-12-20 Thread JulianJohannesen
Hi shaneog, Did you ever get a good answer to your question? I'm having the same issue. Thanks, Julian shaneog wrote: Hi All, I would like to change it so I can call frames within j carousel using word based links. By default, jcarousel with external controls, calls frames using

Re: [jQuery] Re: Get the selected text and border it with tags

2009-12-20 Thread Karl Swedberg
On Dec 20, 2009, at 5:21 PM, Šime Vidas wrote: Say, we have an input box or a textarea. There are two words selected. I need to make them italic (i/i) if a button is clicked. You want to put i elements inside input type=text / or textarea ? That's not possible... input is an empty

Re: [jQuery] huge drop down

2009-12-20 Thread fachhoch
that did not help me , I triedgoogle search but none of them worked for me , please, jquery experts tell me how to CONTROL WIDTH of dropdown IN IE , Scott Sauyet-2 wrote: You might look at a plug-in like: http://code.google.com/p/dropdown-check-list/ Good luck, -- Scott

[jQuery] parent selectors (I think) and tabs

2009-12-20 Thread Bruce MacKay
Hi folks, I'm hoping for some help/direction in a problem I'm having with some tab switch code (originally presented @ http://www.mind4m.com/stories.php?pageid=10) that I've introduced onto a test page @ http://rudderlive.bito.org.nz/employment_dev.asp While the tab a links are working in so

[jQuery] Selecting radio button unselects text field and vice-versa

2009-12-20 Thread marvster
I have a radio button group (all the same name) with default selections, but I also want users to be able to enter a custom value in a text field. Is there any way to UN-select a radio button if the user clicks in the text field, but CLEAR the text field if the user decides to go back and select

[jQuery] Re-create ajax element

2009-12-20 Thread Wendi Turner
$(document).ready(function() {... }) $.ajax() Inside the $document.ready function... I create an anonymous ajax element. I can trigger this document ready to create a new ajax object (which is a slideshow that loads an xml file with locations to directory images.) I can tell the ajax object

[jQuery] jquery validate plugin - greaterThan addmethod problem

2009-12-20 Thread markstegg...@googlemail.com
Hello, So, I am using two custom methods, GreaterThan and LesserThan: // custom code to for greater than jQuery.validator.addMethod('greaterThan', function(value, element, param) { return ( value jQuery(param).val() ); }, 'Must be greater than start' ); // custom code for lesser than

[jQuery] Re: Add class selected to a hyperlink in navibar! Help me.

2009-12-20 Thread Nguyen Phu Cuong
On Dec 20, 2:27 pm, Šime Vidas sime.vi...@gmail.com wrote: You should add that class on the server-side everytime you click on a link, a new page is loaded, so the current page is overwritten together with your jQuery code... Hi, what's solution for server-side navbar?

Re: [jQuery] huge drop down

2009-12-20 Thread Charlie
IE gives limited support to what you can do to style selects. As suggested use a plugin, of which there are many, that convert select's to alternate html yet retain similar functionality fachhoch wrote: that did not help me , I triedgoogle search but none of them worked for me ,

[jQuery] unable to focus on textboxes - update panel - jqmodal - asp.net

2009-12-20 Thread Dexter
0 vote down star Hi, I have a jmodal popup which asks for name. One textbox and one button. Name is required hence it has required field validator on it. And the button and the textbox belong to same validation group. I click save button, which saves the name and closes the popup. The

[jQuery] Superfish and Wordpress

2009-12-20 Thread Rob
I am having trouble getting my wordpress theme to use the Superfish in the nav menu. My problem is I have subcategories that go 3 tabs deep and currently it is very tough to navigate through the drop down menu so I wanted to get Superfish to work since I have used it with other non-Wordpress sites

[jQuery] karma.js v0.2 released, library for manipulating HTML 5 and SVG

2009-12-20 Thread Bryan Berry
I am proud to release karma.js version 0.2 today. karma.js is a library for manipulating HTML 5 and SVG. It was developed specifically for educational applications but can be used for general development. I use karma.js together with jQuery and I believe the libraries complement each other. For

[jQuery] multiple ajax requests block the browser

2009-12-20 Thread Ciro Scognamiglio
Hi everybody, It is a while I have a problem with jquery and I haven't find the solution, well, actually the cause either. I am developing a big project in symfony, it is a service portal, and among some services there are a few that uses external services. Those external services are integrated

[jQuery] Re: Superfish - Background Color on Sub-Menus

2009-12-20 Thread Dasher
Howdy, I think I know what you'e after. + Transparent background on top level links + Solid background on sub links The link you referred to returns a 404 page so I could not see it in action. I would do it by removing the background colour from the 'a' item and adding it to the 'li' item

Re: [jQuery] huge drop down

2009-12-20 Thread fachhoch
after big search I got this code $(document).ready(function(){ $('#program').wrap(div class='wrapper'/div); $('.wrapper').after(div class='selectArrow'/); $('.wrapper').find('select').mousedown(function(){

[jQuery] Re: Easy Fade in Problem...

2009-12-20 Thread Alex B
Wow, thanks! That def. was the trick! On Dec 20, 1:14 pm, brian zijn.digi...@gmail.com wrote: Try putting the fadeIn() where the elements are being appended. Also, use hide() just before that. function addPerson() {     //current keeps track of how many people we have.     var strToAdd =