This is a JavaScript event that fires when a UI element is clicked away from or is no longer the active element. The reverse of this event is focus.
1
vote
4answers
24 views
Getting blur images in Image View Android
I am getting images from server, images are large in size, I am displaying them in thumbnail manner in my app, but the images look like compressed and blur.
I am downloading them using lazy list ...
0
votes
3answers
22 views
Jquery on, focus, and blur with internet explorer
I am trying to set up my readonly text boxes as "unfocussable". Basically, I don't want to let the caret show up when the user clicks into the text area.
I was using this code:
...
-2
votes
0answers
24 views
Blur the image on real-time where user touches
I want to blur the portion of the image where user touches on real-time in Android. The native canvas approach is not suitable in this case i guess, as the blur result I want is real-time & based ...
0
votes
1answer
26 views
SVG Gaussian Blur not working in Firefox
I've looked through a couple of the other posts here regarding this issue but I'm still stuck sadly. I have ended up with the following code:
<!DOCTYPE html>
<html>
<head>
<meta ...
1
vote
1answer
22 views
jQuery - appending an element to DOM on blur stops click event
newbie to the site and its helped me out heaps, but I haven't been able to find a solution to my current problem. If I missed it - please direct me.
I've got a form that uses jQuery to append a div ...
0
votes
0answers
25 views
VisualBrush size and stretch problems
I would like to export a grid (whit all his children) to a PNG.
The problem is that some of these children are outside of the grid.
Here is my code:
VisualBrush sourceBrush = new VisualBrush(MyGrid);
...
0
votes
0answers
34 views
jquery .blur() not working in IE9
I have a html5 page and when it loads in IE9, I am getting 2 focuses on the page. One on a text box (when I click on the text box) and another on a button (which is present when the page loads). Is it ...
-1
votes
0answers
11 views
looking for depth of field photoshop plugin effect [closed]
i need to find photoshop plugin that create effect of depth of field like the photo attach!
my last designer use this effect and now i cant find it
i need to find photoshop plugin that create effect ...
1
vote
0answers
20 views
Android bitmap progressive blur
I am working on a project where I need to apply progressive blur towards center of bitmap.
Currently I have applied blur with 2 different intensities, one above another with different center radius, ...
0
votes
0answers
12 views
Any way on Android to dim the ActionBar reliabily?
I am trying to create a background dimming effect like when displaying a dialog where the whole background including the ActionBar is dimmed.
Unfortunately I cannot simply use a dialog as I have ...
0
votes
2answers
25 views
jQuery user activity logging
I want to log user activity.
According other users response on StackOverflow I made a small jQuery library:
var stop_timeout = false;
$(window).blur(function(){
elvis('left the building since ');
...
0
votes
0answers
32 views
java implementing a Gaussian blur dont work [closed]
i want to implement a standard Gaussian blur algorithm in java. But it dont work very well.
I do not know what i am doing wrong there i tried some different matrix but it still just dont look like a ...
0
votes
1answer
22 views
Imagemagic focus on area
I've been searching information about how to create focus on area of image using Imagemagick. I haven't founded anything in official documentation.
I would like to blur all the image except area, ...
1
vote
1answer
21 views
Update input and messages primefaces password on event blur
I am working with primefaces and I have a form with error messages if the form is incomplete. This is part of my form:
<h:form id="signup">
<h1><h:outputText ...
1
vote
1answer
22 views
Canvas blur function - no third party plug-ins
I have been searching on the internet for a simple way to blur a canvas image. I thought it would be easy to find information about how to program the gaussian blur function but every time I found ...
0
votes
1answer
42 views
javascript blurring function error
I have changed a little bit in a javascript regarding blurring of canvas image. But somehow there is an error in the code. I can't seem to find it.. The code is this one: ...
0
votes
1answer
42 views
how to draw a blur line with finger touches on iPhone?
How do I draw a blur line with a finger slide/touch motion on the iPhone? I have the following code but it is not worked. It do it wit core-graphics.some sample code?
Thanks!!
...
0
votes
0answers
49 views
Blurring a background image based on ScrollView scroll position
I am trying to think how I would best go about implementing similar functionality as of the Yahoo iOS Weather application. When the user scrolls, the background image blurs the further they scroll.
...
0
votes
2answers
33 views
Javascript Ceil Increments
I currently have this which rounds up any input number to the nearest whole value on blur:
$(function(){
$('#my_value').blur(function() {
$(this).val(Math.ceil($(this).val()));
});
});
...
0
votes
1answer
33 views
How to make the current window blur with jQuery?
I would like to blur the current windows after 3s when the page is loaded. How to make the current window blur with jQuery?
I am not detecting the blur event.
====updated===
I tried:
...
0
votes
0answers
70 views
IE 9 & 10 events not firing (consistently)
I am developing a web application. This application due to requirement contains a table with 500+ rows (unpaged). The application is very interactive and so we're using KO behind the scenes.
That ...
0
votes
1answer
37 views
Best solution for text blur + all browser support - fallback ideas?
I need your suggestions.
For a eBook webshop I need to show parts of the text and partial a "pseudo" blured text:
Here is my example link for different tests I did:
...
0
votes
0answers
29 views
Data from Formlayout do not get saved in the database
I am using CodeIgniter and DHTMLX to build my system. When my site first loads it show the DHTMLXGrid with all the data from the DB. And when I click on a record and press edit button, it will show ...
1
vote
2answers
324 views
Parallelizing the Gaussian Blur Algorithm with OpenMP
I was trying to parallelize the gaussian blur function using OpenMP,
but I am new at OpenMP, and when I tried to parallelize the two for loops (I don't think there are any variables that need to be ...
0
votes
1answer
44 views
Stopping a blur event on Click of a hyperlink
I used this answer jQuery <select> simulation with input and div to create a dropdown look alike. I am trying the make the user select only the options displayed in the list and he cannot enter ...
0
votes
1answer
94 views
Actions through WebDriver will not trigger the blur event
I have a webpage with two dropdowns. Selecting an option in one dropdown will update the list of options in the other dropdown through a script that's triggered by the blur event. The blur event is ...
0
votes
0answers
16 views
IE8 beforeBlur() and postBlur() events
i have a function in javascript.
onBlur: function(comp) {
if (this.leftTextField.hasFocus || this.rightTextField.hasFocus) return;
this.beforeBlur();
this.hasFocus = false;
...
1
vote
1answer
82 views
Weird issue with GLSL Radial Blur
Shader used: http://www.gamerendering.com/2008/12/20/radial-blur-filter/
My issue is this: The whole scene only takes up a quarter of the screen space (which is a rectangle of these coordinates: ...
0
votes
2answers
44 views
How to deselect a HTML button tag with a simple chrome extension
I have created a chrome extension with a simple popup.html file that contains a button tag as first element inside the body. When I test it on Chrome 26 under OS X, each time I click on my extension ...
0
votes
1answer
95 views
Jquery animate blur function
I am using a jquery blur plugin called "Vague.js". It allows me to blur anything on a website. Now I want to animate the blurring. How do I call the .blur() function from a jquery animate() ?
//This ...
1
vote
0answers
28 views
Giving element focus doesnt seem to work when tab is in background
I am trying to scrape a webpage using javascript and firefox. On the page, the new content loads with ajax when the form inputs change. My script fills in the form input, removes focus from it, and ...
0
votes
1answer
177 views
jquery autocomplete ipad hide keyboard focus
I use jquery ui autocomplete to search with an input.
When I click on the input on an ipad, the keyboard show up correctly.
Then I type some word and I have some search result that appears.
...
1
vote
3answers
42 views
Trying to set a conditional within a jQuery blur() event
I'm trying to get an input box to perform on blur() either set a value of 0.000 if the value entered is an empty string and if it isn't then perform some function. This is what I have. Help me out ...
0
votes
0answers
117 views
Gaussian Blur with convolution matrix on shader
I am trying to implement a gaussian blur with convolution matrix on my shader.
This is the code i have:
float4 ppPS(float2 uv : TEXCOORD0, uniform sampler2D t1) : COLOR {
//kernel matrix
...
0
votes
1answer
149 views
jQuery focus/blur toggle within same div
$('#topcontainer input,select').focus(function() {
$("#square1").animate({"opacity":"1"}, 400);
}).blur(function() {
$("#square1").animate({"opacity":"0.2"}, 400);
});
This is code that ...
1
vote
1answer
362 views
How to get the gaussian blur effect on a UIView in iOS6
Does anyone know how to achieve a gaussian blur effect on an UIView in iOS6? Similar to twitter's #music app when the filter menu is open. (the background under the menu becomes blurred)
1
vote
3answers
233 views
Javascript - Disable submit button until 3 fields are not empty
I have this almost working bit: http://jsfiddle.net/HFzkW/
My code looks like this:
<div id="cform-container">
<div class="alignleft" id="cform">
<form action="<?php print ...
0
votes
1answer
135 views
chrome fires change event twice after enter key pressed and blur event
I have a text <input> and when it is filed I want to fire the change event. The change event is fired by:
1. clicking outside the text field (so it loses focus) or
2. by pressing enter key (so ...
1
vote
2answers
117 views
Apply GaussianBlur to Individual Pixels
I am writing an application in C++ using OpenCV to apply a Gaussian filter to individual pixels in an image. For example, I loop through each pixel in the image and if they match a particular RGB ...
0
votes
1answer
38 views
Cocos2d 2.1 AWTextureFilter blurring only part of texture
I use Cocos2d 2.0 and AWTextureFilter. I need to blur texture. Here is my code:
//Create mutable texture
CCTexture2DMutable *texture = [[CCTexture2DMutable alloc] initWithCGImage:[UIImage ...
0
votes
2answers
66 views
jQuery blur issues on multiple fields
I am trying to create a dynamic quote form where the user can add as many rows as they need. After typing in an input field with the class of 'reCal' I want the total price field to be calculated.
...
1
vote
1answer
137 views
Using a jqueryui dialog, I'm trying to focus on a textarea but the cursor never appears
I'm using
jquery : 1.9.1
jqueryui : 1.10.2
all browsers show the same behaviour -
So I'm launching a jquery dialog anytime someone right-clicks a textarea element. I noticed that the textarea is ...
-2
votes
1answer
106 views
.blur() of two select boxes
I'm currently working on some admin tool with a table. When I click a field it will make it editable. But I have several fields where I have more than one select box or text field. The problem is that ...
1
vote
1answer
54 views
JQuery append method not adding html to the page
I am loading a view using Ajax/jQuery. This view contains a form having jquery validation in it. My problem is the error messages are not displayed if I try to submit an invalid form.
The page has a ...
1
vote
1answer
248 views
Hide the keyboard (blur) when clicking out of a textField inside a tableView in Titanium
I'm trying to get a table in Titanium where each row has a static text and a textField where I can input something.
So I go and create a row where it's left part is the static text and the right part ...
-1
votes
2answers
27 views
Display data on blur
I have a simple table (dynamically generated from an array) where i can put the amount of pieces so the price can calculate automaticly (on blur) in the price field. Both fields are form-input fields.
...
1
vote
1answer
89 views
jQuery blur()…How exactly does it work?
I've created a mobile dropdown menu for a responsive website, that essentially shows a hidden unordered list when you click on a certain element. It works great, except for the fact that I can't get ...
3
votes
1answer
202 views
jQuery - blur, but not if click on button
I have a search box that is small in normal state.
on focus it expands, and a submit button shows up. This was done to save space.
now, on blur, the search box shrinks again, and the submit button ...
2
votes
1answer
74 views
Counting each mousewheel scroll and outputting to a variable
I'm attempting to use this jQuery MouseWheel plugin along with this Canvas Image Blur plugin in order to have a full screen image to be either blurred or brought back into focus using the mouse scroll ...
2
votes
1answer
102 views
Prevent jQuery blur from triggering while being using TAB key
Working on a mobile version of a site with a fixed header. Because iPhones push headers up and while the keyboard is sliding up, then drops back down... I decided to hide it using jQuery.
Working ...





