[jQuery] jquery combobox
Hello all, I used this http://jquery.sanchezsalvador.com/samples/example.htm script for a while but now i use a newer version of jquery and it doesnt work anymore i get this kind of errors 'Syntax error, unrecognized expression: [@dataValue='Aanval']' Could someone have a look at that script and tell me how it can work again Thx,
[jQuery] Galleria thumbs not vertically aligned correctly in Safari
Im using Galleria on this page and in Safari, strangely the thumbnails bump down inside their container by 12px. Can anyone see why this is happening to me in Safari only? http://www.viewwestaspen.com.asp1-10.websitetestlink.com/property_detail.aspx?id=106490#images/20090207012424691783000000-5.jpg Thanks!
[jQuery] AJAX xml problem
I have a rss feed and want to navigate to <media:thumbnails url='.... etc. I can't figure out what to use for a selector as the media:thumbnails just doesn't work. I am doing a .find(). Any ideas. The feed is http://newsrss.bbc.co.uk/rss/newsonline_world_edition/front_page/rss.xml which I get via a php proxy at http://www.bartonphillips.dyndns.org/test/test.php?xml=1 Thanks
jQuery recognized by Avira Antivirus
Hi, jquery-1.3.2.min.js is falsely recognized by two anti virus engines. Any updates on that? http://www.virustotal.com/analisis/fa73 ... b3e51ef346 Thanks, Markus
[jQuery] Show/Hide Content won't hide last record?
I have a loop to display all the records in my table and am using the show/hide content function on the record link so the info displays in a box (div) anyways, for some reason the last record on the page always has it's div box open, and the "close" and "toggle" links don't work for that record, all the rest are fine, what can cause this? -- View this message in context: http://www.nabble.com/Show-Hide-Content-won%27t-hide-last-record--tp23197453s27240p23197453.html Sent from the jQuery General
[jQuery] Lavalamp Trouble
Can anybody find quicker than I can why it’s not working on my blog? http://ocmexfood.blogspot.com/ (the orange nav near the top) I’m pretty sure I have all the elements in correctly. Thanks.
[jQuery] jQuery CSS 3 Compliant - but does it fix CSS?
The jQuery home page says jQuery is CSS 3 Compliant. This is a dumb question: but does that imply that it fixes CSS 3 in all browsers or just that it supports CSS 3 selectors? I have a feeling it's the later.
[jQuery] Production problem: automation server can't create object
Hallo all. I have a problem with a system in production environment. Unfortunately the error is not systematic and I cannot reproduce it in development environment. The client has ie6 and the page he is visiting is made with the tabs plugin. I read on internet that disabling activex may cause problems like this. Is there any way to debug in a better way this problem? Kind regards Massimo
[jQuery] Dymanic added/executed script
Hi! This question is not exactly related to jquey but to javascript in general. I'm apologize for the almost off-topic Using ajax and jquery I'm calling a function on the server code that returns a javascript script that I need to assign to a div and get executed automatically when assigned. So far I couldn't do that, seems that the assigned script to the innerHTML of the div can'r be executed dynamically. Basically I'd like something like assign an alert('hello world') to the innerHTML and automatically
[jQuery] superfish multiple menu
Hello, i think this one is pretty simple to do.. i would like to have multiple superfish menu with different style.. any clue how to do this ? i'm new to jquery
[jQuery] Can you help me understand .end() ?
Please reference http://docs.jquery.com/How_jQuery_Works, the Chainability segment. I'm confused on the given description of .end(): You can take this even further, by adding or removing elements from the selection, modifying those elements and then reverting to the old selection, for example: $("a") .filter(".clickme") .click(function(){ alert("You are now leaving the site."); }) .end() <a href="http://google.com/" class="clickme">I give a message when you leave</a> Methods that modify the jQuery
[jQuery] slightly ot: image appended to href wraps to next line
Hi all- I'm looking to do something that I'd think has been done many times before, I'm just not finding it... After all email links on an intranet site we have, we show an envelope icon. Simple enough. This is a topic here If you are looking for help on this, please contact <a href="mailto:bobjones@thedomain">Bob Jones<img src="emailicon.gif" style="width:10px;height:10px;" /></a> I'm doing this with rel="email" and jquery, but this is more of a html question so I posted the html code as rendered...
[jQuery] Executing dynamic script
Hi! This question is not exactly related to jquey but to javascript in general. I'm apologize for the almost off-topic Using ajax and jquery I'm calling a function on the server code that returns a javascript script that I need to assign to a div and get executed automatically when assigned. So far I couldn't do that, seems that the assigned script to the innerHTML of the div can'r be executed dynamically. Basically I'd like something like assign an alert('hello world') to the innerHTML and automatically
[jQuery] Designer new to jQuery. Using Greasemonkey and jQuery
Hi there. I'm not very good at scripting or programming but at least with jQuery some of it makes sense to me and so I'm trying to build a custom script that alters some of the functionallity of the website rememberthemilk.com but I can't get past one problem. Any query I put through jQuery gets reset when I click elsewhere on the page. What do I need to do to prevent RTM from reseting all my hard work in jQuery? For example at the moment I have the following code... <pre> // When the page is ready
[jQuery] How to enable & disable jquery Drag effect on click of a button?
Hello all, Query : 1. How to enable & disable jquery Drag effect on click of a button? I am using this :-----> $("#image_to_map").draggable(); to apply the drag effect. Waiting for reply Regards Anand
[jQuery] InsertAfter Documentation
Hello, I'm just getting started, but the Documentation for the InsertAfter Demo is confusing to me: Is it moving the " is what I said... " (Which it looks like its doing). Or is suposed to Insert something? Thanks, Mike <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <script src="http://code.jquery.com/jquery-latest.js"></script> <script> $(document).ready(function(){ $("p").insertAfter("#foo"); // check after() examples }); </script>
call function after page load in iframe
My iframe id is 'bpd'. I would like to call a function after the page loads into the iframe. Here is my code and I am getting 'Invalid Argument' error. $('#bpd').load('/main/buspd.cfm', function () { setHeight(); }); Thanks
[jQuery] How to get JQuery to parse text as HTML
I'm trying to get jquery to parse some text in a variable as HTML, has anyone tried this before and got it to work? Can this even be done, or do I have to parse as text? <CODE> testHTML = "<html><head></head><body><ul><li class='targetMe'>TESTING</ li></ul></body></html>"; testGetHTML = $(".targetMe", testHTML).html(); alert( testGetHTML ); </CODE>
Correct hover syntex possibly mouseover
Hi there, I'm brand new to jquery and would appreciate some help with the .hover syntax please. This is what I'm trying to do. When someone hovers with their mouse over a thumbnail image, I would like a larger photo in another location on the page to become visible. And when they move their mouse away/out I'd like the larger photo to be hidden. Right now the larger photo is set to be hidden as the page loads. Because this is mixed in within lightbox css alone won't work for this example. First I
Jquery Lightbox and thumbnailviewer 2 problems
Hello, I'm using Jquery lightbox to display images in the nice lightbox style, I'm also using thumbnailviewer 2 to switch between different colours of a product. I've modified a line in thumbnailviewier to insert the correct html to activate lightbox when the link is clicked. But it doesn't work, it simply opens the image by itself as if it was a regular link, i belive i know why! but i don't know how to fix this. Jquery Lightbox uses this script at the end of the page to load all class="lightbox"
[jQuery] Receiving Error - But functionality remains! - Strange!
Hey, I'm receiving the following error: Error: uncaught exception: Syntax error, unrecognized expression: # However all the functionality of the script continues to work, I need to get rid of the error as it looks pretty bad on client's sites and want to make sure the script isnt doing anything funny. The basic set up is a number of Select boxes, When selecting an option in the select boxes, I loop through a JSON stock array to see if the item is in stock and to then enable / disable the relevant
[jQuery] JQuery UI Accordion option "collapsible:true" not collapsing
I have a simple Accordion which I have given the settings: $("#accordion").accordion({ event: "mouseover", header: "h3", active: false, collapsible: true, autoHeight: true }); And has layout: <div id="accordion"> <h3 class="featured-pic-container">111</h3> <div> AAA </div> <h3 class="featured-pic-container">222</h3> <div> BBB </div> <h3
[jQuery] Errors with Animation with Jquery 1.3
I get this error when using UI and other animation effects o.speed is not a function Cannot seem to see why. Code below Anyone else seen this? <script type="text/javascript" src="http://ajax.googleapis.com/ajax/ libs/jquery/1.3/jquery.min.js"></script> <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.1/ jquery-ui.min.js" type="text/javascript"></script> <link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/ jqueryui/1.7.1/themes/ui-lightness/jquery-ui.css" type="text/css"
[jQuery] focus under window
Hello, I have a thickbox window with links. For one of these links, I would call an external site, but below my current page and close my thickbox. Is this possible? Thank you all.
[jQuery] jQuery + Firefox - Potential bug with hover event?
I came across this at work using jQuery 1.2.4 and now replicated it at home with jQuery 1.3.2. Instructions and example here: http://www.temega.co.uk/dump/4pqjql.html
[jQuery] Combining cluetip with datepicker
I'm trying to get cluetip to work with the datepicker plugin. Basically, I want to set it up so that when you click on a date on the datepicker, a cluetip for that date opens and dynamically loads content appropriate for the selected date. The only part I haven't yet been able to figure out is how to trigger a cluetip based on selecting a date. I don't know if it's possible, and if so how I would, call the cluetip activate() function from the onSelect option of the datepicker. And, assuming I was
[jQuery] 'Simulating' mouseenter/mouseleave/hover events using $.live
I am looking for a way to simulate the actions of the hover (or mouseenter/mouseleave) whilst using the live method of binding (The items are dynamic). Is there a way to do this or will I need to use the 'old fashioned' method of unbinding and rebinding? I do not want to use a plugin.
[jQuery] Jquer.live and facebox
I have used the facebox plugin with a simple <a rel="facebox" href="#21">21</a> in the head i have set jQuery(document).ready(function($) { $(\'a[rel*=facebox]\').facebox({ faceboxHtml: \'<div id="facebox" style="display:none;"> \ <div class="popup"> \ <table> \ <tbody> \ <tr> \ <td class="tl"/><td class="b"/><td class="tr"/> \
Bit of help needed.. I'm sure it's quite simple..?
Hi all, I'm trying to use a snippet of code which turns the entire div clickable, however, I'd also like the target to open up in a new window.. This is the code: $(".rightContent").click(function(){ window.location=$(this).find("a").attr("href"); return false; }); I tried changing it to window.open but to no avail.. I'm also using this: $("a[href*='http://']:not([href*='"+window.location.hostname+"'])").attr("target","_blank"); But has no effect on the particular divs I'm trying to get to open
[jQuery] load json
Hi everybody My json return these values [{"libelle":"France","countryId":1,"code":"FR"}, {"libelle":"Tunisie","countryId":2,"code":"TN"},..] I have to load them ,I used this script I've found it here (http:// groups.google.com/group/jquery-en/browse_thread/thread/ e337d34bddd1af86?pli=1) : <script type="text/javascript"> $(document).ready(function(){ $.getJSON("countries.jsp", function (json) {var allItems = json.length;$.each(json, function (i, obj) { if (i<allItems) { alert('Value: ' + obj.Value
[jQuery] jquery lightbox - ie height problem
Hi, i'm using jquery lightbox, but when i open an image from ie, lightbox background' s height doesn't cover all website. Take a look here http://www.mcworks.it/tests/index.php?page=oil-jeans I tried using z-index or changhing height, but problem persist. Thank you Paolo
jquery getScript
Hey, how can i check if a javascript file is loaded before i load it with getScript function ? Thanks 4 any help
[jQuery] Alternate $.load
Is there another way load HTML from a remote file and inject it into the DOM (instead of $.load)?
[jQuery] Need help with menu programming
hi, my menu looks like this: <div id="menu"> <ul class="m_home{if !$smarty.get.l}active_main{/if}"> <li><div><a href="/">home</a></div></li> </ul> <ul class="m_company"> <li><div>DCT</div> <ul {if $smarty.get.l == 2}class="active_sub"{/if}> <li><a href="/?l=2&p=wir-ueber-uns">wir über uns</ a></li> <li><a href="/?l=2&p=philosophie">philosophie</a></ li> <li><a href="/?l=2&p=team">team</a></li> </ul> </li> </ul> <ul class="m_kompetenzen"> <li><div>kompetenzen</div> <ul> <li><a href="/?l=2&p=beratung-
[jQuery] Need help with menu programming
hi, my menu looks like this: <div id="menu"> <ul class="m_home{if !$smarty.get.l}active_main{/if}"> <li><div><a href="/">home</a></div></li> </ul> <ul class="m_company"> <li><div>DCT</div> <ul {if $smarty.get.l == 2}class="active_sub"{/if}> <li><a href="/?l=2&p=wir-ueber-uns">wir über uns</ a></li> <li><a href="/?l=2&p=philosophie">philosophie</a></ li> <li><a href="/?l=2&p=team">team</a></li> </ul> </li> </ul> <ul class="m_kompetenzen"> <li><div>kompetenzen</div> <ul> <li><a href="/?l=2&p=beratung-
frameReady Issues
Hey guys, first post, woo! Long time user of jquery and usually have no issues, but frameReady has be stumped! Code is below, basically, i need to be able to add classes to elements in the iframe, and attach onclick events to elements within the iframe too. The code isn't there to do that at the minute, I'm just trying to do something simple that won't even work!! {literal} <script> $(document).ready(function() { $.frameReady(function() { $("Hello!").prependTo("body");},
[jQuery] jQuery Ajax Error in Firefox 3.0.8
Hi friends I tried to develop an ajax request using jQuery It works fine with IE and Even Chrome But I always getting same error in firefox "411 Length Required" On firebug error shows on jquery.js line no 19 my code is given below $.ajax({ type:'POST', url:'ajax.php', dataType:"html", cache:false, timeout:10000, beforeSend:function(){ $('#searchresult').html("<div align='center' valign='middle' style:'height:300px;position:fixed;'><img
[jQuery] Dialog (jQuery UI Dialog) closes when i cancel a form submission
i have a form inside dialogs. i use ajaxForm plugin for my forms. i validate using beforeSubmit ... like in the example below. the strange thing is the dialog closes in the Add/Edit Type forms but not in the Add/Edit Category. the form did not submit which means the return false works but the dialog containing the form closes. why is this so? $("#frmAddType").ajaxForm({ dataType: "json", beforeSubmit: function() { if ($("#atName").val() == "") { alert("Please enter a type");
[jQuery] web site configuration
Hi, at present I give a favour for one of my friends. Unfortunately I'm not really involved in programming web sites. I'm calling a lot of javascripts for a slideshow and some other stuff. for example: <script type="text/javascript" src="highslide-full.js"></script> <script type="text/javascript" src="highslide-with-gallery.js"></ script> <link rel="stylesheet" type="text/css" href="highslide.css" /> I'm calling following scripts in the homepage, page prices and page rooms. It would be easier not
[jQuery] Accordion : remote objects
Hello everyone (pls excuse my english...) I'm trying to add an accordion to a page. But i can see that the correct structure is something like this: <div id="accord"> <h3>item1</h3> content1 <h3>item2</h3> content3 </div> i.e., elements must be contiguous. Is it possible to have something like that: <div class="accord"> <h3>item1</h3> content1 </div> --- some content --- <div class="accord"> <h3>item2</h3> content2 </div> Or maybe i shall try with the solution described here : http://docs.jquery.com/UI/Accordion#NOTE:_If_you_want_multiple_sections_open_at_once.2C_don.27t_use_an_accordion
Next Page