"I think we're getting mixed up between image pixels and monitor pixels,"
That's precisely my question, it doesn't matter how the image is calculated, the final output always end up on a monitor or...
"SVG graphics don't use pixels"
Thats what I read, but doesnt it eventually have to end up in pixel value on the screen? Seems like thats the only way to get anything to...
That's whAt I meant, regardless how the graph is generated, not just by me, lets say a circle on Gimp saved as png and a circle in Inkscape saved as svg the svg always look nicer and needless to say,...
Hi, recently I work on a data visualization site. The designer wants the data generated graphics to be pixel perfect. Although I played with svg before, I never quite understand why svg graphics look...
The reason I don't want to use id is because I am working on a data visualization project. I use the jsDraw2D library, the project requires a lot of circles...
Please excuse the unclear last post
I was thinking using other attributes such as top, left.
Now let say I want to use id, if I do it like this
<html>
<div id="a">
<div id="b">
</html>
now...
I was thinking using other attributes such as top, left.
Now let say I want to use id, if I do it like this <div id="a"> now how do I use JQuery to find a when the mouseover. I use the to get the...
Hi, I have a site that has multiple divs. I would like to add onmouseover or onclick event for
each div. My problem is how can I use Javascript or Jquery to detect which div the user clicks on or...
Hi, I was asked to make a javascript function to read excel files, it requires a new ActiveXObject, But ActiveX is a Windows thing, which means the page will only work on Windows and possibly only on...
You need to start learning responsive web design if you intend to develop mobile device friendly site. In RWD, usually you would not use px for width and height, use percentage instead, and read...
Right off my head, you are asking JQ to response to all h3 elements! :eek:
$(document).ready(function () {
$('h3').click(function() {
if ( $('li p.faqs_answers').is(':visible')){
...
Thanks for the reply refeezed. So you mean by default JQ will use it in document.ready? Did I understand correctly?
What if I want to use it in other methods other than .ready()?
Hi I am never that good at JQuery so decided to spend some time to really enhance my skill, I found this really good tut, but there is one thing I don't understand.
In this...
Thanks for the reply.There is no need to see my code, I just need to know in general how to make the font size re sizable base on how visitors resize their browser windows.
let's say a div Width is...
Hi, I stumbled on a problem, I am playing with responsive design, all my div, h and p elements are in percentage, so they all resize properly. but how do I do the same with font size? I read that em...
When I design a website, every browser looks a bit differently, I design mostly on Safari and Google Chrome, looks perfect but when I look at my design in Fire...
Hi, I have seen recently a lot of web sites, when you click on an image, it pops up with a window of the full size of the image with c close button on the upper right conner(a circle with an X in it)...
hi this is really driving me nuts, I uploaded a snapshot of a website I am doing.
It's is a form contains a <textarea> no matter what I do, the texture keeps having an extra space on the left and...
Hi I am learning how to export MySQLL data to xml,
I follow this guild from Google
http://code.google.com/apis/maps/articles/phpsqlajax.html
There are 3 genxml codes to output xml...
Hi, I made an iPhone app that sends out GPS data to my server and store it in MySql database, now I like to make a web page using the data to overlay over the Google map and draw a line between...