[jQuery] jquery table editor
Hi http://dev.iceburg.net/jquery/tableEditor/demo.php i worked on jquery table editor . the plugin works well with version 1.0.3 . but it not works with 1.3.2 i found the line of tableEditor.js has having [ var row = jQuery ("../../td",link);] . the line has a issue. could you forward me to solve the soln http://dev.iceburg.net/jquery/tableEditor/jquery.tableEditor.js
[jQuery] Expression vs. selector
Hi, in the docs there are methods accepting arguments of type "Expression" (filter,...) and methods accepting "Selector" (appendTo,...) To me it looks as if they were used interchangeable. So what is an Expression in contrast to a Selector? Regards, André
Which browsers is jQuery integrated into?
Which browsers is jQuery integrated into? On this site http://docs.jquery.com/Browser_Compatibility it says jQuery supports IE6, but it doesn't actually say if jQuery is integrated into IE6+ so do people still have to downloaded a plugin for IE6+ to view jQuery things?
Want to use jquery for containing 4 .swf's in %
Hey all, I've got a question about my site www.seniorict.com . When you see my site you can see 4 swf that are stretched out and move with the sreen size. What I want is that when you load the page those 4 swf slide in and when clicked on slide back. But keep the same layout/stertch out function. I've looked at the slide in script but I can't make it spread out of the page. Could anybody help me how to create this effect with Jquery? Thanks in advance for your support
[jQuery] (Validate) Error messages in Summary section
Hi, I'm new to jQuery and the validation plugin, I just wondered if it is possible to get the error messages to be shown in an error summary section instead of inline? Cheers, Daz
[jQuery] Two Menus Showing up
I installed the Superfish Module and all appears to be working properly, My question is The Original Horizontal Nav is still showing up? How do I Disable? Also, The links with drop down's are gray and the links with no dropdown are red? Thanks, Owen
[jQuery] Fade In/Fade Out effect
Hi all, At this url - http://thespacebetweenthewords.org/sandbox/ I am attempting to cycle through arrays of words with a FadeIn/FadeOut effect. The array of words displayed doesn't seem to be starting at [0], though. I am perhaps missing something with the order in which the functions are executing. If anyone in the community would like to comment on the code as it stands so far, any insight is appreciated.
[jQuery] can't return value after $.ajax call
Hi i'm currently using the dialog functionality (modal form) from UI library to submit data to the database. All the validation checks have been running ok until one of the validation checks requires a ajax call to check if a username exsist in the database. I'm fairly new to both javascript and jquery so this could be a fairly basic blunder. Initially, i thought it was an sycronicity problem, but I changed the $.ajax async option to true but still no joy, so maybe it something to do with scope etc?
[jQuery] Ajax and LiveQuery
Hi ! I use the plugin "live query", i have checked many times my code but it dont works, i want to use jquery after an Ajax request. Here is my code : " $('#refresh_inventaire').livequery('click',function(){ajax_storage ();}); " When I click on the refresh link, it does refresh (using "ajax_storage ();" function) but the jquery part still dont work... (the jquery script (a simple hide/show) works great without using ajax...) I hope someone can help me, Bye ! (Sorry if I have make some mistakes, I
add remove attribute
Hi I have this simple list with three links. I'm trying to make the selected link appear red in color and when one of the other links are selected that the first link returns normal and the new selected link is turned red. The html code is like this. <li> <span>Case</span> <ul><a href="Afghanistan.aspx" id="Afghanistan" style="">Afghanistan</a></ul> <ul><a href="Sudan.aspx" id="Sudan" style="">Sudan</a></ul> <ul><a href="Zanzibar.aspx" id="Zanzibar" style="">Zanzibar</a></ul> </li> And the jQuery
[jQuery] VALIDATION not validating when submit button clicked....
Here is my handler: submitHandler: function(form) { alert('I CANT GET THIS TO TRIGGER'); }, Here is my button: <input class="submit" type="submit" id="register" value="Register"> How do i trigger a validate when the submit button is clicked? All of my validations work while I am working with the form but the button does zilch.
[jQuery] jquery + cycle + IE
Having a bit of an issue with my setup with jQuery + Cycle http://negativespace.ca/clients/mirrorbuilder/ There are two divs that control the photos, #controller, and #prevNext which has two href's in it that link to #next and #prev anchors like in the demos from the Cycle website. I am using the Cycle pager technique like this: <script type="text/javascript"> $('#slideshow') .before('<div id="controller">') .cycle({ fx: 'scrollHorz', speed: 'fast', timeout: 0, pager: '#controller', next: '#next',
[jQuery] Full jQuery website
Hi everybody, Is there any project about a website using pure jQuery for rendering the pages ? Thanks, Cyril
[jQuery] BlockUI overlapping issue with element negative margin
Hi, I am using blockUI to block a div. Above this div, there is an UL with a negative bottom margin (margin-bottom: -1px). This UL is an horizontal menu, and I use the -1px bottom margin so that the selected element (LI) car overlap the blockUI-ed div top border. The issue is that, when calling blockUI on that DIV, it makes the div go above the UL/LI elements. I tried to change the zindex values everywhere, with no effect. I do not understand why the DIV is modified by blockUI ? Thank you if you
[jQuery] input has focus
Hello: I'm trying to know if an input has focus. Is that possible using jquery? samething like this: $('input#1').has_focus()
[jQuery] I need Validation Plugin help... (again)
This thing has kicked my butt all week long. Yesterday, I actually got it to work.(almost). Since I am new to this plugin, I am using FRANKENSTEIN code built from examples and samples. here is my code: success: function(label) { var valid_img = '<img src="/global_libs/images/ icons/checked.gif">'; // set as text for IE label.html(valid_img); } My expectation is that I would have a checkmark.gif display next to valid elements. Well...It works. But it
Creating a help overlay like Google Reader or GMail
Any tips on how to quickly create a keyboard shortcut overlay like that in reader or gmail? I was thinking of using the modal dialog and applying some CSS to it... any ideas would be welcome. Any tips on what CSS classes I'd need to modify?
[jQuery] Select Option add Class
This might have been resolved, but I can't find a solution with my search. I'm trying to add a class with the text of the option. Simple to do the selected option, but not all of them it seems. I want to change: <select class="required" id="custom1" name="custom1"> <option selected="" value=""/> <option value="1">Text 1</option> <option value="2">Text 2</option> <option value="3">Text 3</option> </select> to: <select class="required" id="custom1" name="custom1"> <option selected="" value=""/> <option
[jQuery] [UI 1.7.2] Datepicker: Encapsulated theme?
Hi, For the sake of learning, does anyone know where I could nab a copy of the datepicker CSS that does not have any extra UI css? Basically, I just want to style the datepicker sans extraneous UI css. :) The "ui.datepicker.css" gets me pretty far, but I appear to be missing some styles. Should that stylesheet give me everything I need, or do I need the whole UI css in order for it to be styled correctly? Thank you! Cheers, M
[jQuery] Get the ID of a button that is clicked
I have a listing of records on a page and an "Edit" button for each record. I want to write some jquery that fires when the button is clicked to go to the edit page for the record whose button I clicked. Here is what I have. Feel free to tel lme to do it completely differently if there is an easier way. THANKS! <script type="text/javascript"> $(function() { $('#myGroup input:button').click(function(e) { self.location = 'foo.cfm?id=' + I NEED TO GET THE ID OF THE BUTTON CLICKED
[jQuery] $ajax() problem
$.ajax({ type: "POST", url: "mywebpage.aspx?Arg="+args2, contentType: "text", data:"{}", dataType: "text", success: CompleteInsert, error: onFail }); I dont know why the onFail function is going to be executed when args2 is too big. args2 is a string type can anyone explain this thanks
[jQuery] jQuery Cycle Plugin and Links
I would like to add another attribute to the img tag called "link." This attribute would define where the image would link to if someone clicks the image. Then i could do something like: .append(' ' + this.alt + ' <a href=' + this.link +'>Read more ›'); Does anyone know what/where i can add in the cycle js to accomodate for this.link?
[jQuery] jQuery validation - Numbers not allowed
I have this code: $(document).ready(function() { // validate signup form on keyup and submit var validator = $("#signupform").validate({ rules: { firstname: "required", lastname: "required", username: { required: true, minlength: 2, remote: "users.php" } } }); }); How do I set the validation that no number are allowed in the firstname text box????
[jQuery] load() event on a <link> tag?
Hello, When a user clicks a button I dynamically load large CSS and JS files. I handle it in this way: $("#say_hello").click(function() { $("body").prepend('<link type="text/css" rel="stylesheet" id="example" href="css/jquery-ui.min.css" />'); $.getScript("js/mail.js"); $("#say_hello_box").dialog("open"); }); It works great, but the problem is that sometimes the dialog box opens before the CSS has loaded. I would like to add the equivalent of $ ("#example").load(), since using load()
[jQuery] can all jQuery code be included in just one $(function(){}); ?
I Include my javascript in an includefile. Which is better way to organize the jQuery code: $(function(){ $(".myboxclass").corner("7px"); $("#myrandomdiv").corner("7px"); }); or $(function(){ $(".myboxclass").corner("7px"); }); $(function(){ $("#myrandomdiv").corner("7px"); }); that is in two sections. Is the last just wasting space? they seem to be working the same. Thanks.
[jQuery] Jquery Game : Outer Empires : Open Beta
Well, we've finally entered the open beta phase of Outer Empires (http://www.outer-empires.com) which is a game that is built using a lot of Jquery... :) If you fancy having a go, head on over to the site to get started (the main news item will give you all the information you need) - it'll show you a bit about what Jquery can do when coerced into playing ball. (And a bit more information : ) Outer Empires (http://www.outer-empires.com ) is a space based game combining the game play of Elite (market
[jQuery] Jquery Show/Hide playing up in Safari
Note: I have also posted this on jqueryhelp.com but I havent resolved this issue. http://www.jqueryhelp.com/viewtopic.php?p=9713 I have just started a new job and am building my first website for them. Im using Jquery to try and impress them but after trying and testing the site in Safari, I am stumped as to why such a basic function its going wrong. The script works fine in ie and firefox so Im pulling my hair out. I have stripped all the non necessary code out of this and placed the css and javascript
[jQuery] JSONP + two different encoding results
I have an edit-in-place plugin I've created for my employer. We *need* to use iso-8859-1* I understand we can set the *response* to be in iso-8859-1 in ajax, but I also need the request to be, so that it's posted properly to our database. So, I'm posting with jsonp, and then getting the updated content via ajax. Two requests is sloppy, but the amount of network strain we'll save from edit-in-place makes this an acceptable reality. The problem being, on my test page, I send out some test data: a lowercase
Calculate image position in sliding gallery
I am trying out the gallery script jqgalscroll (here's my script: http://michaelclinard.com/gallery/ndxz- ... lscroll.js) There is one thing I would like to do, but I need help. The positioning of each list item (image) is currently being calculated based on the container div's width x the number of images in the list. Is it possible to make the positioning be based on the actual width of each image? Here is what I'm trying, image 4 shows what I'm trying to do (landscape photo butted up against horizontal
Help needed urgently with Safari Issue
Hi guys, I am new to this site and fairly new to Jquery. I am need of urgent help here or my backside is on the line. I have tried seaching for an answer on this and cant seem to find one. I have just started a new job and am building my first website for them. Im using Jquery to try and impress them but after trying and testing the site in Safari, I am stumped as to why such a basic function its going wrong. The script works fine in ie and firefox so Im pulling my hair out. I have stripped all the
[jQuery] jquery tabs :: ul li a animation
Hello all, I am using the tabs with a fade in/out effect for the "panels", it works nice. $(function() { $("#tabs").tabs({ collapsible: true,fx: { opacity: 'toggle'}, selected: -1 }); }); What I would like to do is a type of animation for the tab titles (> ul li a), so that when I click to one of those the selected one would appear in a smoother way, fadein/out etc.. I have tried various things, adding code lines in the inline script or trying to put something
[jQuery] Malsup Form Plugin and buttons tags
I'm using 2.28 from http://malsup.com/jquery/form/#download. I'm submitting a form using this plugin and that works fine however I use <button> tags and these do not seem to be submitting with the rest of the fields. Has anyone managed to submit a button? Nick
sexylightbox question - launch from function, not from link
Hi, Sorry for the vague subject. I'm using the Sexylightbox plugin (http://www.coders.me/ejemplos/sexy-lightbox-2/). The script is used by adding 'rel="sexylightbox"' to links such as this example which opens the login.html page when the link is pressed: <a href="login.html?height=150&width=350" rel="sexylightbox" >Login Box</a> However, rather than a link, is there a way I could launch the same page (login.html) within sexylightbox as part of a function? i.e. function OpenLogin { // launch the login.html
[jQuery] jQuery readonly input text and ie6
Hallo all. I got e problem with this piece of code with ie6. I'm trying to make an input text readonly with a predefined value and I need to cancel the value only when some key is pressed on keyboard. Her is the code http://pastie.org/578280 The code do work on every browser except ie6 (on ie6 the input text seems not to receive the focus when is readonly and so the event is not fired up). Any idea Kind regards MAssimo
[jQuery] Attribute selection not working in MSIE; eg $("input[name=name]").val()
Just when you think you made something beautiful, MSIE screws it all up :( I tried to get values from a input box which works great in Firefox, but not in MSIE; $("input[name=name]").val(); Is there a workaround for MSIE to get this working or am I just doomed to use id's?
[jQuery] Question regarding jQuery.ready method
I have developed a FF extension that loads a few JavaScript files (one of which is jQuery) and attaches them to any given page being viewed by the user. The loading of the js files can ether happen during or after the web page had been loaded into the browser. Obviously, once the js files get loaded, I want to start doing some stuff and I wanted to use the jQuery.ready method to determine when the js code can start performing whatever needs to be done. However, it does not seem to get fired if the
[jQuery] Plugin to view large photos
http://code.google.com/p/jquery-largephotobox/
[jQuery] simple question regarding the 'this' keyword
Hello, First time posting here, so sorry if this has been covered to death, but I couldn't find anything via searching. I'm building a gallery page, that's setup like this: - carousel based horizontal image thumbnail navigation. - main div that loads, on thumbnail click, a high res version of each thumbnail image that exists within the carousel nav. so basically: <code> <div id="main_div"> <!-- high res image will be loaded here via ajax --> </div> <div id="carousel"> <ul> <li><a class="thmb1" href="###"><img
[jQuery] how convert low jquery version function to new version?
hi, this is jquery table editor plugin, http://dev.iceburg.net/jquery/tableEditor/demo.php it is work in this version /* * jQuery 1.0.3 - New Wave Javascript * * Copyright (c) 2006 John Resig (jquery.com) * Dual licensed under the MIT (MIT-LICENSE.txt) * and GPL (GPL-LICENSE.txt) licenses. * * $Date: 2006-10-27 11:15:44 -0400 (Fri, 27 Oct 2006) $ * $Rev: 501 $ */ and the function is <script type="text/javascript"> $().ready(function() { $("#editableTable").tableSorter({ sortColumn: 'First
jQuery Clash with other javascript?
Hi, So I'm trying to create a simple overly but I think i'm doing something wrong with the ordering of my javascript or something, the page is http://blackpaint.co.uk/BlackPaint09/of ... index.html here is the overlay by itself (working version) http://blackpaint.co.uk/BlackPaint09/Jq ... elete.html which is this: <script src="cdn.jquerytools.org 1.0.2 jquery.tools.min.js"></script> <script src="../../Scripts/swfobject_modified.js" type="text/javascript"></script> <script type="text/javascript">
Next Page