[jQuery] Caching issues jqModal??
Hi, I got some problems using jqModal and ajax. I found some posts about caching issues with jqModal, but those solutions didn't help. ========================================================== page1.php ---------------------------------------- ... <ul> <li id="item_1">Item 1</li> <li id="item_2">Item 2</li> <li id="item_3">Item 3</li> <li id="item_4">Item 4</li> </ul> ... $(document).ready( function() { $("li").dblclick( function () { theId = this.id;
[jQuery] [validate] Ability to add rules via multiple validate() or some custom addRule() method
Hi, I have the following problem. My form is built dynamically on the server side with the use of components. What I would like do is to give components the ability to specify validation rules for the fields they render and service. So if eg. component renders description field it should be able to provide a JS snippet which sets the validation rules for it. To keep components independent, I'm unable to use single $ ("#formId").validate(...) invocation to set up my form validation. I do not want
[jQuery] CSS question: background color + background image with transparency
Hi, this isn't a jQuery question by nature, but I've searched the net for a while now for a suitable solution with no success, so perhaps the knowledgable folks here may have a hint for me. Here's the problem: I have an element (div) to which I would like to apply a png background image with rounded corners on a transparent background, i.e. the outer pixels of the image have an alpha channel shadow. I want the background of the element to show through on these outer pixels. The image is dark, and
[jQuery] version problem in tutorial "Rate me"?
Hi all I've a version related problem or so it seems... I tried the Rate me tutorial, and it works fine in firefox and opera, but not in msie (7). when i try the online example it's works all right, but that's jquery version 1.1.2, while the current version is 1.2.3. The rating is entered in the dat-file, so everything appears to work, but the interface then shows: Thanks for rating, current average: , number of votes:'' (so, no vars are printed). At first i thought it was MSIE related, but the online
[jQuery] cross subdomain post
I want to submit a form from a page on a.mydomain.com to another page on b.mydomain.com without reloading my original page Both the pages are on the same domain but within different subdomains. If I use .ajax() , type=POST , it works fine on IE , but fails on Firefox because of the cross domain issue with this error below Error: [Exception... "'Permission denied to call method XMLHttpRequest.open' when calling method: [nsIDOMEventListener::handleEvent]" nsresult: "0x8057001e (NS_ERROR_XPC_JS_THREW_STRING)"
[jQuery] jsonp problems
Hello, I am having problems using jquery's cross domain json function. I send a request like this: var data = { 'data': '10' }; $j.ajax({ dataType: 'jsonp', data: data, url: 'http://another-domain/json-echo.php?jsoncallback=?', success: function(json){ alert("received back: " + json); } }); and on the json-echo.php $val = json_decode($_REQUEST['data'], true); $output = json_encode($val); echo $_REQUEST['jsoncallback'].'('.$output.')'; I get
[jQuery] Why is this slide so jittery in IE 7?
Hi, all... Thought I had this solved, but would anyone care to take a look at this page: http://c21ar.wsm-dev.com/cfm/our-agents.cfm And click on the "Click here to view or hide agent's biography" link? FF2 doesn't have the jitters. The top agent's bio slides in smoothly. Any agent's bio for an agent who is beneath an already open bio works smoothly. But any bio, except the top agent, without a bio open above it, will open very jittery in IE7. Anyone else see this behavior? If you do, any possible
[jQuery] Loading a form via ajax load and then submitting with ajax form helper not working.
I am having trouble getting a form to submit using the jquery form helper. I load the form with jquery load which works fine. Then if I try to submit the form using the form helper it doesn't seem to find it. I assume the DOM is not being reparsed for the html loaded by the ajax call. I am sure I am just making some basic error. Below is my javascript function, my html and the initial link which loads the form initially. I am a javascript/jquery beginner so any help or code examples would be very
[jQuery] hover() and flickering problem
I use this extension code to make a hover tooltip. I want the tooltip (a div with position:absolute) to display on top of the hovered element. This works great. But when moving the mouse, the mouseout and mouseover events are being fired all the time, causing a flicker effect. How do I escape that? I tried to place a 'return false' in the hover but no luck. $.fn.hoverhelp = function(txt) { $T = $(this).position().top; $L = $(this).position().left; $(this).hover( function(e){$('#hoverhelp').empty().html(txt).css({top:$T,left:
[jQuery] [validate] validation works in firefox but not in IE
I have a form set up with the validator plugin (ver 1.2.1) and jquery(1.2.2) and the whole thing works perfectly in firefox 3b4, but when i fire up IE (any version) i get a alert box with the following message: "Error: Expected Identifier, string or number". when i hit debug IE throws me to the postalcode definition in the rules section, and i can't figure out what might be going on here. There is no other javascript on the page. Thank you, Ariel my code follows: <script src="lib/jquery.js" type="text/javascript"></script>
[jQuery] Collapsible / toggable table rows
Hi, I am looking to implement collapsible and toggable table rows as you can see in this demo: http://www.mortgageworkout.co.uk/demo.html It is broken for two reasons: 1: Colspan does not work. 2: I have a problem with relationships of elements. My current code is: $(document).ready(function(){ $('.description').hide(); $('a.details').click(function() { $(this).parents('table:first').find('.description').toggle(400); return false; }); }); I want to toogle the row classed "description", when user
[jQuery] local the row and col of big table
Hi, I have a big table in my page, how I can know which row/col when I click a cell? Thank you, Wes
[jQuery] [validate] remote validation only on submit
I'm including some complex validation through remote mechanism. My problem is that this validation took a while, so I would like to disable the validation on keypress after the user try to submit a form with an invalid value in that field. Is that possible? If so, how? Thanks in advance, Brian J. Cardiff
[jQuery] links in accordion plugin?
Hello, I have a page at http://www.consultwebs.com/videoNEW.htm which uses the accordion plugin to run those tabs you see where the video is. It works fine but none of the links works in the tabs, and some of them disappear. Like under the "Example Videos on Consultwebs' Client Websites." heading. When you click on the links it closes the tab instead of going to the page I want. How do I get the links working in the paragraphs? Anyone know the problem? thanks alot!
[jQuery] Selector problem
Hello Everybody, I have an intrasting problem (I'm sure it's trivial, but I don't know how to do it): HTML: <div class="help"> <div class="exp"></div> <b>Any questions?</b> Click '+' for additional search information! <p class="helpCont"> But the hunt is not over. With well practised skill Hank skins the mosquito. (Hank produces an enormous curved knife and begins to start skinning the tiny mosquito) </div> jQuery: I'd like to catch the click event on exp div (formatted with css), and I'd like to
[jQuery] key words - problem, animate function, jquery, bug, IE7.
problem with the property backgroundColor while running animation function of div element within ie7 fine in FF2 - windows xp does not work unless you quote up the property and write it in correct css name (with hyphen)... CORRECT: $(this).animate({"background-color":black},200) WRONG: $(this).animate({backgroundColor:black},200) dunno if the jquery people know. cant be arsed to join their members list to find out. should be picked up here. hope this helps....took me ages to find the problem. DOH
[jQuery] Recommendations needed to replicate this flash functionality
At first hello to everybody! I'm new to jquery and this group. I'm just starting to dig into the framework, and I need some kind of more concise guidelines on my very first project I'm trying to create with jquery. What I want is to clone this flash functionality here: http://asaucerfulofpixels.com/files/mockup.swf with jquery. Can somebody please point me to some resources where I can learn how I can do this? Are there any specific plugins/extensions that I can use? Also, if it is possible, can
[jQuery] jEditable and TinyMCE
Hello. I've got problem in using jEditable. I would like to use TinyMCE in text area showed by jEditable. Is it possible anyway?
[jQuery] jdmenu 1.4.0 bug?
i have this code <li> /index.php/destinations/index Destinations <ul> <li> /index.php/hotels/index Hotels </li> <li> /index.php/party_packages/index Party Packages </li> <li> /index.php/meal_plans/index Meal Plans </li> <li> /index.php/clubs/index Clubs </li> </ul> </li> however the when i click on Destinations it does not goto /index.php/destinations/index, if jdmenu removing the click event if it has a sub menu cause the other links work? -- View this message
[jQuery] Superfish problem with pathClass
I'm having a problem with Superfish v1.4.1 by Joel Birch. I'm not sure if it's a bug, or behaving this way by design. The problem can be seen if you take the example page: http://users.tpg.com.au/j_birch/plugins/superfish/all-horizontal-example/ and remove the child UL tag from the third menu item so it does not have a 2nd level child menu. Now, when you hover over the third menu item, it still displays the child menu for the second menu item, because it is the "current" item. In this scenario where
[jQuery] Free Call and SMS (World Wide)
Free Call and SMS (World Wide) http://www.freecall2phone.blogspot.com/
[jQuery] Can't assign variable content to some element border color in IE (very weird problem)
Hi there, I'm having this strange problem with IE that I don't know how to fix. Tried countless things, but neither worked and I just can't understand why this is happening, it makes no sense to me. First things first... To assign a color to some element border I do the following which works fine: $('id#element').css('borderColor', '#ff0000'); Now let's say I have a variable with that string, something like this that also works fine: var color = '#ff0000'; $('id#element').css('borderColor', color);
[jQuery] Accessing Parent Classes variables from $.Post function
Hi Everyone, I'd like to use jQuery in a class I'm working on for a project. However, I'm quickly getting lost in variable resolution, and any help people could provide would be greatly appreciated. So, the just of it is that I have something like: function DB_info(script) { this.db_info_script = script; this.results = ''; }; and then: DB_info.prototype.get_column_details = function(obj, table, column) { $.post(this.db_info_script, { action: "get_column_details", table: table,
[jQuery] cluetip + only title
Hi all! I have an annoying but easy problem with cluetip: I have: <a title="do not click me" class="tooltip">link</a> $('.tooltip').cluetip({splitTitle: '|', showTitle: false}); I want almost the same, but without any title. Is that possible? My workaround was to write: <a title="|do not click me" class="tooltip">link</a> and use showTitle:false in the options, but it seems a bit hackish... thanks Gergo
[jQuery] [validate] - Strange problem with validations - fields disappear
Hi, I am facing really strange problem with validation plugin. Following is the code I am using: ----------------------- <script type="text/javascript" language="javascript"> $(document).ready(function() { $("#designform").validate({ errorClass: "show_error", wrapper: "li" }); }); </script> ----------------------- Basicaly I am trying to wrap error in list element so it can fit well in my design. It works fine at the time of showing the error but once the value in invalid
[jQuery] Collapsible / toggable table rows
Hi, I am looking to implement collapsible and toggable table rows as you can see in this demo: http://www.mortgageworkout.co.uk/demo.html It is broken for some reason. 1: Colspan does not work. 2: I have a problem with relationships of elements as well. My current code is: $(document).ready(function(){ $('.description').hide(); $('a.details').click(function() { $(this).parents('table:first').find('.description').toggle(400); return false; }); }); I want to toogle the row classed "description", when
[jQuery] Does anyone know how to convert this to jQuery?
My radio button list: <asp:RadioButtonList ID="rblMailingAddress" runat="server" TabIndex="330"> <asp:ListItem Value="Sameasbusaddr">Same as my business address.</asp:ListItem> <asp:ListItem Value="SameasHaddr">Same as my home address.</asp:ListItem> <asp:ListItem Value="Separateaddr">This is a separate address.</asp:ListItem> </asp:RadioButtonList> My Telerik combo controls: <radC:RadComboBox ID="cmbBusinessState" runat="server"... <radC:RadComboBox ID="cmbMailingState" runat="server"... <radC:RadComboBox
[jQuery] iPhoto done in JQuery
Check out these three Ajax apps developed almost entirely using JQuery by Mobyko. They are an iPhoto type photo management tool, a video management tool and a text management tool. Click on the links in the navigation to switch between the galleries. All the galleries are aimed at helping people to manage their mobile assets - photos, videos and texts. Demo versions can be seen at http://www.mobyko.com/gallerydemo/mobykogallery/index.php Sign up with Mobyko if you want your own galleries. ajk49
[jQuery] some survey plugin wanted
Theres some survey/poll plugin in jquery in anywhere? thx
How to check whether a variable is set or not in jquery??
My code have a text area which is to be hidden on first load , then on clicking of reply button textarea need to be shown. this is ok.. .But the problm is that i am validating that text area using framework validation and when the validation error message is displayed the textarea got hidden. But i dont want that area to be hidden on error display. so i want to check whethr a variable is set or not, and then to display that text area. how can i do this with jquery??? pls help .....
[jQuery] Flash animation VS jQuery?
<% response.write("Hello World!") %> Yup... I'm a old fashion ASP 3.0 guy, maybe the only one in this group? :=) It is now time to see if I can do a cool animation without calling my "flash guy". This is not to save the money but more to see if I can use jQuery instead... Don't like flash, sorry! My client need a basic NEWS SLIDE animation like this one: http://www.cogiscan.com 4 or 5 "news"... each one has; - 1 picture (on the left) - 1 text header (top right) - 1 description (under le header) -
[jQuery] samples of DropShadow
Samples of McLars's DropShadow Plugin http://allabout.co.jp/internet/javascript/closeup/CU20080325A/index2.htm DropShadow http://plugins.jquery.com/project/DropShadow
[jQuery] this.each is not a function
hi. please help me understand and solve the following conflict. this code: <html> <head> <title>title</title> <script type="text/javascript" src="http://www.livejournal.com/ js/??core.js,dom.js"></script> <script type="text/javascript" src="http://code.jquery.com/ jquery-1.2.3.js"></script> </head> <body> body </body> </html> fires up Error: this.each is not a function Source File: http://code.jquery.com/jquery-1.2.3.js Line: 1332 as i understand, an arbitrary script ( http://www.livejournal.com/js/??core.js,dom.js
[jQuery] How to change contextmenu-plugin to trigger on left-click
Hi! I've tried to solve this myself, and seeked help on the IRC-channel, but the "problem" seems to be hard to overcome. I've implementet the contextmenu-plugin ( http://www.trendskitchens.co.nz/jquery/contextmenu/jquery.contextmenu.r2.js ) on a site, and the client has fallen in love with it and how it works - but they want to have it trigger on left-click instead of right. The problem is that i can't figure out -where- the rightclick is caught, so that i can change it to left-click. Can anyone
[jQuery] please, please, please, please, please, help me with this
Hi all, I mannaged to get the JCarousel working perfectly in IE but in Firefox Mozilla the previous and next arrow buttons dont show. Im using the static_controls.html model from the examples and the tango skin. here is my CSS followed by the HTML jquery.jcarousel.css [css] /** * This <div> element is wrapped by jCarousel around the list * and has the classname "jcarousel-container". */ /*#mycarousel{ display : none; }*/ .jcarousel-container{ position : relative; border:1px solid #000000; } .jcarousel-clip
[jQuery] attr() fails sometimes.... (using droppable and draggable)
{ i tried to make this post once, but it didnt appear!! } I did initially post this over on the jquery UI group, but the concensus is that its not really a ui issue, its a jquery issue... so im posting here. Sorry to just join without introduction, this issue is doing my head in... First off, firefox + firebug is a must, some console.debug'ing going on. ----------------------------------------
[jQuery] CSS
Hi Friends h r u ? this is raju I want to create dropdown menu in css. Advance thanks
[jQuery] TOT: Anyone gotten any CF-Talk mail today?
Sorry for the TOT, but I'm trying to find out if the HouseofFusion.com mailing lists are down. Haven't gotten anything from CF-Talk, CFEclipse, CFNewbie, etc. Any news? Thanks for the indulgence! Rick
[jQuery] hover() only working on DOM elements NOT loaded via jQuery?
I'm befuddled... my hover effects work only during initial load -when content is reloaded via click() - the hover stops working. // First, I populate a tab box with the contents of a hidden div $('#tab_1').html( $('#tabcontent_1').html() ); // inside tabcontent_1 I am doing hover business on images whose filenames end with "hover.png" $('img[@src$=hover.png]').hover(...); this works fine for images loaded like in line 1 above. BUT! - here comes the weird thing: // my tabs have click events that load
[jQuery] Horizontal slide Panic.com
Hi, I really love the horizontal slide effect on http://www.panic.com/coda/ I have a few newbie questions :-) 1. Has anybody created anything similar with JQuery and posted examples or tutorials? 2. I would like to make my tabs more SEO friendly than using anchors, is there a way around this? 3. Is it possible to have it cross browser compatible and what browser problems may occur? 4. If JavaScript is switched off could the tabbed design still work without the slide. Thanks in advance, Probably been
Next Page