jQuery or AJAX issues Programming Web Development by gentlemedia …as a widget (unfortunately) and a custom Soundcloud player which runs on the Soundcloud API. The page is here: http://gentle.media…News' page, that you should see now, I have 5 soundcloud items and clicking on 'play track' or 'play set'… the default mixcloud player at the bottom to a soundcloud player and it starts playing (if autoplay is supported… I'm developing a new music site, help requested! (You have to check this ou Programming Web Development by CheezyGamer16 … been developing a music site that takes advantage of the SoundCloud API and its going fantastic so far. The only problem is… Re: Favorite computer hobbies? Community Center Geeks' Lounge by gentlemedia … On my site I use the SoundCloud API to pull in my mixes from SoundCloud in a custom SoundCloud player. So, I'm also… a lot on SoundCloud to check out new… underground/indie music... phew... that's a lot of SoundCloud name dropping :) Re: jQuery or AJAX issues Programming Web Development by gentlemedia The mixcloud player is in an iframe, but the soundcloud player not. The soundcloud player data (audio, track info, artwork, etc.) …`.load()`. The code of the players (mixcloud iframe and soundcloud URL) are in a HTML snippet that gets loaded into… have control over the play/pause button of the soundcloud player, but once I open/close artist info it… Re: jQuery or AJAX issues Programming Web Development by gentlemedia I have hard coded `li.clone-container` and `button.close-details`, but the issue of not stopping/pausing the soundcloud player still persist once I've closed `.clone-container`. How to clear some unwanted errors on Console Programming by SimonIoa …the console errors like: dmp.214...e1b7.js (γραμμή 3) SoundCloud Embed Player (api-web) widget-...d738.js (γραμμή 5) Exception: Error: …2", attributes={...}, _escapedAttributes={...}, περισσότερα...} widget-...d738.js (γραμμή 5) SoundCloud Embed Player (api-web) widget-...d738.js (γραμμή 5) Exception: Error: Permission denied… Re: AudioPlayer with PHP source Programming Web Development by phoenix254 i dont know if it is good or not that u can use also [skylink api](http://skylink.io/web/). it is webrtc.. and u can use video player or audio player or any real time app with this api.. and its easy Re: How to cache php pages Programming Web Development by SimonIoa … $this->oembed_title($res); } /************************** * SOUNDCLOUD FUNCTIONS **************************/ private function soundcloud_data(){ return array( … } private function instagram_req(){ return "http://api.instagram.com/oembed?url=".$this->instagram_url();… Re: How to cache php pages Programming Web Development by SimonIoa …com"; $i_title = self::oembed_title($res); break; case "soundcloud": $res = json_decode($res, true); $arr = array();…medium'] = $res['url']; } $url_req = "http://www.screenr.com/api/oembed.json?url=".$code; $v_thumb = $arr; $iframe_url = "… Re: SAML SSO curl php Programming Web Development by veedeoo …surprised by no support from company X, it is their API and not yours.. Giving you the C# codes does not…One last thought, why do you have to describe the API owner as company X. Don't you think it would…. I have more than 15 API applications under my belt e.g. evernote, youtube, paypal,google,soundcloud,mandrill,easypost,dwolla,NHTSA,APIGEE… Wordpress soundcloud API integration Programming Web Development by UK-1991 Hello, Recently I wa trying to develop an audio player of sound cloud as I got inspiration from here http://en.israelstory.org/episode/whats-love-got/ you can click file 1 by 1 and notice on the player hw is it playing I also tried to do the same but it's not orking when I clicked on second one it started playing from the start the player set the … Re: Wordpress soundcloud API integration Programming Web Development by diafol Read this back to yourself and see if it makes any sense. Where's your code? Re: jQuery or AJAX issues Programming Web Development by Taywin Here is my guess (I am not coding in JQuery). When the function is called, the closing button object is created the first time. Then it is properly added to the clone container. Once a user closes the container, the object is still there, but the `click()` function has been removed from the object. When you attempt to open another info, the display… Re: jQuery or AJAX issues Programming Web Development by gentlemedia Thanks for your reply, Taywin! I will try that too. It is the .empty() that is conflicting somehow. Re: jQuery or AJAX issues Programming Web Development by gentlemedia @Taywin, pointed me in the right direction, so I have resolved issue 2. I remove the siblings of the closing button (object) before detaching the clone-container. $cd.click(function(e) { $('li.active').removeClass('active').siblings().removeClass('hide'); $(this).siblings().remove(); $cc.detach(); $sd.show… Re: jQuery or AJAX issues Programming Web Development by Taywin I got this error below... TypeError: $.browser is undefined if ($.browser.msie) { // line 174 of sc-player.js Re: jQuery or AJAX issues Programming Web Development by gentlemedia Yeah, I saw that in the console, but I believe it's not related to the issue. It is the Flash fallback for IE. It's browsersniffing with jQuery which is deprecated, so therefore the error I guess. Re: jQuery or AJAX issues Programming Web Development by Taywin Then you should remove the part because Javascript will stop running after it found an error in the script. Re: jQuery or AJAX issues Programming Web Development by gentlemedia Seriously? But that bit is somewhere in the beginning of sc-player.js and all the lines of code after that seems to run just fine (except for my issue then :) ) Re: jQuery or AJAX issues Programming Web Development by Airshow Surely `cc` can be permanently appended to `.news-grid` and `cd` can be permanently appended to `cc` with `.show()` and `.hide()` controlling visibility? There doesn't appear to be any need to detach/reappend. Even better, `cc`/`cd` could be hard coded in HTML. I'm not sure this will fix anything but should better guarantee that the behaviour is … Re: jQuery or AJAX issues Programming Web Development by gentlemedia Thanks for looking at this, @Airshow! I could indeed hard code cc, it's just that I'm not such a fan of hard coded empty tags in the markup, but I will follow your suggestions and see if this will make a difference. Thanks! Re: jQuery or AJAX issues Programming Web Development by gentlemedia I have a (temporarely) fix for the second issue. After closing the artist info and I click on the 'play track' or 'play set' link of the song/set that is playing, I have control again over the pause/play button, so I do this step now dynamically with jQuery, but if there's a better solution or if someone can track down the cause of the issue, I'm … Re: jQuery or AJAX issues Programming Web Development by gentlemedia Well... unfortunately that fix works only if a track is playing and not when a set is playing half way. The set starts playing again with the first track (obviously). Bummer! Re: jQuery or AJAX issues Programming Web Development by Taywin When I said 'remove it', it could simply be commenting the whole block out. The reason is that the whole block of code will never be executed anyway. The block of code starts from the line with `if` and all the way from its scope `{ ... }`. Shouldn't hurt anything afterward. ;) Re: jQuery or AJAX issues Programming Web Development by gentlemedia Thanks Taywin! I did some googeling this afternoon about that `($.browser.msie)` and found a thread on Stackoverflow stating it is not compatible with jQuery 1.9.0. (which I load) and suggesting to replace that bit with `(navigator.userAgent.match(/msie [6]/i))` which I did and it doesn't throw in an error like this, but it didn't solve the issue … Re: jQuery or AJAX issues Programming Web Development by Taywin Hmm... I have no idea :( Also, the part that stop working is inside an iframe too... May have to keep poking for a while... Re: jQuery or AJAX issues Programming Web Development by Airshow Gentlemedia, it's not obvious what is causing this issue. You need to devise an investigation strategy to discover what's causing it. Simplify everything one aspect at a time and see when the problem disappears. Re: jQuery or AJAX issues Programming Web Development by gentlemedia You're right, Airshow! I followed your advice and I got it solved, but I feel kind of stupid now :) I add/remove a class 'active' on a 'li' so that I had a hook to trigger the CSS animations/transitions for the news items, but this classname is also used for the active song (the song that is playing) in the soundcloudplayers' playlist which is an … Re: jQuery or AJAX issues Programming Web Development by Airshow Gentlemedia, coooooool! Now Taywin and I can start breathing again ;-) Re: I'm developing a new music site, help requested! (You have to check this ou Programming Web Development by Aeonix What is the thing you're exactly looking for? I don't get it. If you're seeking for help with your website, you haven't asked a question, if you're willing to make use of services of people over here, then it's wrong forum. The correct one is **Business Exchange > Jobs and Resumes**. I don't see direct purpose of your thread.