Re: Any jQuery 4 users? Programming Web Development by Neil_brown001 … it works, it works! 😄 I’ve been testing out the jQuery 4 beta on a couple of legacy projects and so… system and custom builds if you only need parts of jQuery. Overall, it’s been a pretty painless upgrade as long… plugins or patterns. If DaniWeb is still going strong with jQuery, no shame in sticking with what works — especially with a… Any jQuery 4 users? Programming Web Development by Dani Just as the topic title suggests, any jQuery 4 beta users out there who could let me know what it's like? The wait for v4 gold release is killing me. Also, please don't make fun of me for being a jQuery user. DaniWeb has been built on jQuery for decades. (Okay, maybe that's not something to brag about.) Re: Json response in javascript Programming Web Development by Biiim … is what i'm using for AJAX requests - it needs jQuery: var data = []; data.var = 'test'; $.ajax({ type: "POST"…(responseData['message']); } } }); I guess the direct answer would be using jQuery for `$.parseJSON(msg);` Re: Show selected option id Programming Web Development by Biiim ….getElementById('managsel').value);`. I think its .value, I normally use jQuery where it is `$('#managsel').val();` Also on this post: >… Re: Show selected option id Programming Web Development by Amonza I understand that the original poster has marked this as solved. However, I will leave this here as it provides a more fexible and decoupled method to achieve the desired outcome. const selectElement = document.getElementById('managsel'); selectElement.addEventListener('change', function() { const xId = this.options[this.… Re: Show selected option id Programming Web Development by Mr.M Just to indicate I've managed to work around this, and what I'm using is working 100%. There's a reason why it uses the same id's that's because it is dynamically generated and I have almost 5 or 6 GROUPS of classes so I can't use the class grouping on this but was looking for something similar but instead of using classes I wanted to use id's.… Json response in javascript Programming Web Development by Mr.M Hi Dw, I want to get the keys and data of the php json response, heres the response I get {"content":{"1":{"title":"Present","start":"2025,01,29","end":"2025,01,29","backgroundColor":"#f39c12","borderColor":"#f39c12"}}}… Re: Show selected option id Programming Web Development by Biiim > Just to indicate I've managed to work around this, and what I'm using is working 100%. > > There's a reason why it uses the same id's that's because it is dynamically generated and I have almost 5 or 6 GROUPS of classes so I can't use the class grouping on this but was looking for something similar but instead of using classes I … Re: Json response in javascript Programming Web Development by Mr.M I also have to mention that the response will also be a multi-array Re: Json response in javascript Programming Web Development by Langflow Hi! You can decode the JSON response in PHP by using json_decode($response, true); to get an associative array and then get the keys by using array_keys($data) and access values as needed! Re: Json response in javascript Programming Web Development by Dani Sorry, I'm confused. Do you want to decode the JSON in PHP or in Javascript? Re: Json response in javascript Programming Web Development by Mr.M @Dani, I wanted to decode it, basically @BIIM has provided something that helped me out, the problem now is that I've seen that I am facing an issue with how the data is, so now I want the end data to be like this Content{events[{title: myeventtitleFromDatabase, start: myeventstartDateFromdatabase, end: endDateFromDatabase}]} … Re: Json response in javascript Programming Web Development by Biiim Should be events: responseData['content'] And rdata is being made as an array of objects (should be same as the previous, but responseData might be an object of objects) so to use rdata it definitely would be: events: rdata A dream to get sanity would be to do `console.log(responseData);` to see exactly what you've got. And keep… Re: Json response in javascript Programming Web Development by Dani If Biim had provided a working solution, I’ll mark this question as solved. Jquery slideshow fail. Programming Web Development by minimogul jquery slideshow works in dream weaver but doesn't …/tutorials/javascript_tutorial/create-a-slick-and-accessible-slideshow-using-jquery/"]http://sixrevisions.com/tutorials/javascript_tutorial/create-a-slick-…and-accessible-slideshow-using-jquery/[/URL]. I took out the background and changed the… Jquery .not() checkbox - Help please! Programming Web Development by rom. Jquery's .not() and :not doesn't seem to work in …;script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script> <… jQuery Ajax/PHP call problem Programming Web Development by elbeato jQuery issue here. After calling some ajax, I'm having a … jquery in place of AJAX Programming Web Development by waqar100 jquery can work in place of ajax,tell me the answer how? someone asked me Jquery resizable on rotated div element Programming Web Development by Mallika_P Jquery resizable handles does not working correctly after rotating the div, i changed the handles after the rotation of div into correct position., but when resizing the div it resize opposite direction, for eg we move handle se means the position nw want be fixed but it moves away. Please help me to recover the answer. Thanks Re: Jquery resizable on rotated div element Programming Web Development by LastMitch >Jquery resizable handles does not working correctly after rotating the div, … Re: jQuery Doesn't like IE EVER! Programming Web Development by pritaeas jquery has the :nth-child() selector. I'm unable to give a link to the api page, because it is not opening. But am sure you can find it. Unless you mean another one. Re: jQuery: Div is not showing when clicked Programming Web Development by pwinfrey jQuery's show function doesn't work with the visibility attribute. It works with the display attribute. Change your JS code to say $("#lightbox").css("visibility", "visible") instead of $("#lightbox").show(). Re: JQuery-File-Upload Button dependencies Programming Web Development by LastMitch >JQuery-File-Upload Button dependencies The issue you are having has nothing to do with **Ruby on Rails** at all. This issue is more related to the **javascript** section. The reason is very simple if you modify **jQuery** code first than add **Ruby** on it and maybe it will look much easier than what you are presenting. Re: Jquery DataTables popup error Digital Media UI / UX Design by LastMitch >Jquery DataTables popup error What error? I'm having a hard … Re: jQuery or javascript??? Programming Web Development by pritaeas jQuery is javascript. Re: Jquery Subscription Form with MYSQL Programming Web Development by almostbob jquery the do more[B] JAVASCRIPT [/B]library, with which you wish to accomplish an [B]AJAX[/B] function wouldnt you ask this in the [url=http://www.daniweb.com/web-development/javascript-dhtml-ajax/117]JAVASCRIPT/DHTML/AJAX[/url] forum, where you may get answers Jquery Programming Web Development by davy_yg … ''; if (domainoption == 'incart') var sld = jQuery("#" + domainoption + "sld option:selected&… () { jQuery("#domainresults").slideUp(); jQuery(".domainreginput").hide(); jQuery("#domain" + jQuery(this).val()).… jquery Programming Web Development by lf.gene … one therefore i can use two different css for one jquery? [CODE] <link type="text/css" href…/fullcalendar.css' /> <script type='text/javascript' src='../jquery/jquery-1.4.4.min.js'></script> <…;script type='text/javascript' src='../jquery/jquery-ui-1.8.6.custom.min.js'></script… Re: jquery Programming Web Development by Airshow …your question, "... two different css for one jquery", makes me wonder if you have a …misunderstanding about the relationship between jQuery and CSS. jQuery and CSS are quite independent of each other…DOM). CSS applies initial styles to the DOM while jQuery (paragmatically speaking) interrogates and/or manipulates the DOM. … Re: jquery Programming Web Development by Airshow … type="text/css" href="css/ui-lightness/jquery-ui-1.8.6.custom.css" rel="stylesheet…/fullcalendar.css" /> <script type='text/javascript' src='../jquery/jquery-1.4.4.min.js'></script> <…;script type='text/javascript' src='../jquery/jquery-ui-1.8.6.custom.min.js'></script…