Posts by PunchTheNewbie • 551 points
12 posts
-
4
votes1
answer216
viewsQ: IE does not show CSS gradient and font-shadow effect correctly
Can anyone help me? I can’t get IE to accept the gradient effect, load the font and use the font-shadow below. In fact, IE is not loading anything other than text with a generic font (no…
-
5
votes1
answer17922
viewsA: Macro VBA search information on site
already found the solution. In fact, ZAP Immobles works with SVG in the graph section. My macro collects information from Internet Explorer x coordinate points, but there is some difference in the…
-
2
votes1
answer67
viewsQ: Background panning after keydown effect
Something is wrong with the method I’m using to recreate the Jsfiddle effect http://jsfiddle.net/LeoTheTitan/9Ttk5/ I want the background to move 10 pixels towards the keydown, and to continue to…
-
10
votes1
answer17922
viewsQ: Macro VBA search information on site
I need to search information on a real estate site and bring them to excel. I did the macro below: Sub zap() Set ie = CreateObject("InternetExplorer.Application") With ie .Navigate…
-
1
votes3
answers485
viewsA: How to select separate records on multiple pages of a PHP pagination?
I’d do it this way: (1) Place a checkbox in a highlighted location on the page (indicating that it is a multiple selection); (2) Make the click on the checkbox enable a javascript where: (a) all…
-
2
votes2
answers2591
viewsA: How to set the width of columns in a generated Excel spreadsheet as HTML?
From what I understand, you want to open an HTML inside Excel. Instead of worrying about setting the width through PHP, because you don’t part to a macro in Excel? I have already used enough macro…
-
7
votes2
answers424
viewsA: What forms of data transfer are available to Javascript?
I suggest using Socket IO, a javascript extension already adapted for cross-browser use and which has an extra advantage, she chooses the most efficient way to transport data between the…
-
2
votes3
answers1142
viewsA: Parallax Animation and Fade for Web
A good option is to use the Scrolld.js plugin for Jquery. It allows you to scroll with extreme precision. http://scrolldjs.com/ Note that demo2 handles functions that will interest you, such as…
-
0
votes6
answers18641
viewsA: What is the difference between declaring an array with "array()" and "[]" in Javascript?
There is no difference, both are equally accepted forms for the construction of the Array. It is identical the construction of a function that can be made both of the form: function sum(x,y) = { var…
-
5
votes5
answers1446
viewsA: Is it possible to include elements in the DOM after it is loaded and ready?
I really don’t like the idea of going back in history and keeping the new form settings as generated. This eliminates the user’s option to go back and fix a wrong input that may have generated their…
-
3
votes1
answer473
viewsQ: Draw same javascript object on different canvas
I created a standardized function to speed up the design process in a multiple canvas project. I appreciate the collaboration of bfavaretto /users/74/bfavaretto See function: (it works correctly)…
-
2
votes1
answer491
viewsQ: Javascript Constructor for Canvas Drawimage function
I need to draw several images on several canvas, so I would like to do a generic function that allows me to pass the arguments to draw the positioned images. I thought about the following generic…