Questions tagged [loaded]

139 questions
0
votes
0 answers

Jquery binding event after ajax loaded

I want to bind click event on a page for a caroussel, when the page load dynamically with ajax for transitions between page. The problem is when i load the page, the two button-left and button-right work but when i navigate between page and come…
0
votes
2 answers

TabItem doesn't load immediately

I have a MVVM setup with TabControl and an ObservableCollection of tabitems. I open a file and load the model made of that file in a TabItem: var model = new ViewModel(data, filename); ViewModels.Tabs.Add(model); The TabItem has a…
Gerard
  • 13,023
  • 14
  • 72
  • 125
0
votes
1 answer

Dynamically loaded javascript of angular not working

I am building an application where my DOM is add dynamically outside of angular world ie. jQuery and also the javascript for that is loaded dynamically. I get $compile from angular.injector method and also the scope and then did used the $compile…
0
votes
2 answers

jquery cluetip breaks when loaded more than once

I am using the jQuery cluetip plugin in a portal environment where there can be more than one instance of a portlet on a portal page. Each portlet is its own app, so it really knows nothing about the other portlets. Each portlet needs to use the…
Zendog74
  • 187
  • 1
  • 3
  • 14
0
votes
1 answer

load form using jquery ajax and resubmit that form without page refresh

i want to submit form which loaded via jquery without refreshing the whole page. but this code first load form without refreshing whole page then the form loaded via jquery refreshes whole page on submission. how to solve this…
Hassan Raza
  • 106
  • 12
0
votes
2 answers

Execute some code after link is loaded

here is my issue. I'm generating excel file in a PHP function (with Zend Framework 2). Sometimes, the generating process can be long, too long (25 seconds+), so I decided to create a modal based structure to display a loader so the user is not…
abreton
  • 1
  • 2
0
votes
0 answers

What property can be used to determine when web view fully loaded

I am using a progress bar to illustrate the loading of a webpage via key "estimatedProgress" from observeValueForKeyPath func: override func observeValueForKeyPath(keyPath: String?, ofObject object: AnyObject?, change: [String : AnyObject]?,…
dancingbush
  • 2,131
  • 5
  • 30
  • 66
0
votes
1 answer

Detect page is fully loaded using requests library

I want to know if there is a response from requests.get(url) when the page is fully loaded. I did tests with around 200 refreshes of my page and it happens randomly that once or twice the page does not load the footer.
syedelec
  • 1,285
  • 2
  • 19
  • 30
0
votes
1 answer

Readmore.js, how can I get it working on ajax loaded content

I'm using Readmore.js plugin and it's working well, but how it's expectable, isn't working on ajax loaded content. this is the code I'm using to expand text inside a

Text here

$('.long-text"').readmore({ speed: 75, …
0
votes
1 answer

If directive should not be loaded by some conditional?

I have one directive but sometimes I dont want it to be loaded.
I tried ng-if, ng-show Ok it was not showed, but both of…
Kle
  • 1,003
  • 2
  • 14
  • 24
0
votes
2 answers

WPF MVVM async binding loaded event to scroll selected item into view

I have a listbox in my application which loads a lot of objects, so I use async binding to its ItemsSource property not to block the UI. My probleem is that I would like to scroll to the selected item when the ItemsSource, so the async binding, is…
user2042930
  • 640
  • 1
  • 7
  • 14
0
votes
1 answer

How to use jquery (or JS) to check if a conditionally included file has been loaded

I apologize in advance that this is such a basic question (I'm a newbie), but I haven't been able to find the answer. I'm working on a WordPress membership site that presents a full post when the visitor is a member, but when a non-member tries to…
0
votes
1 answer

Get Facebook likebox height after SDK loaded

Is there a way to get the correct facebook likebox height after the stream is loaded? I'm trying this way, it won't work. window.fbAsyncInit = function() { FB.init({ appId : 'xxx', status : true, cookie : true, …
Okonai
  • 63
  • 8
0
votes
0 answers

Do thing after div loaded content. .load() function

$(".test").click(function(event) { event.preventDefault(); var self = this; $("#preloader #image").fadeIn(); $("#preloader").fadeIn(); $(".frame").load(self.href,function() { $("#preloader #image").fadeOut(); …
neomm
  • 11
  • 5
0
votes
1 answer

ListView loaded event not firing when used in Task Factory C#

I have a List that is bound to a property. There is a load event too "ListLoaded".
Ani_1317
  • 151
  • 1
  • 3
  • 12