Posts by Willian Coqueiro • 599 points
62 posts
-
-1
votes2
answers1306
viewsA: Remove the edge of an image when clicked
I found the problem. I use bootscrap and was inside a div .row and how I use column menu kept circling the links of the images. The outline are defined as 5px within the a.focus bootscrap.css and…
-
0
votes1
answer603
viewsA: Solution for modal not load iframe automatically
My solution was this:: 1° I created the modal normal, and where I wanted to put the iframe which in this case was in modal-body left only so: obs. You may need to adjust the window with width height…
-
0
votes1
answer343
viewsA: Modal loading iframe before opening
My solution was this:: 1° I created the modal normal, and where I wanted to put the iframe which in this case was in modal-body left only so: <iframe/> obs. You may need to adjust the window…
-
0
votes1
answer1040
viewsA: Open iframe by clicking and downloading when you close it
I was able to solve it this way: 1° I create the modal normal, now where the iframe which in this case was in modal-body left so: HTML <iframe width="100%" height="900px"…
-
1
votes2
answers1306
viewsQ: Remove the edge of an image when clicked
I’m having trouble with a menu that has images with redirect to modal, when I close the modal he gets a blue border on Chrome and dotted on IE, I’ve tried outline: none and border: 0. Someone’s been…
-
1
votes2
answers339
viewsA: Event javascript to scroll over an area or div
Friend. Has a command to just pass the mouse to zoom in image. As you did not put code. Follows: <script language="javascript"> <!-- function aumenta(obj){ obj.height=obj.height*2;…
-
2
votes2
answers6364
viewsA: How to make an element track the scrollbar?
Just do the following in your CSS code #menu in position change the code absolute for fixed. #menu{ position: fixed; left: -292px; height:100%; width:15%; transition: left 0.5s linear; }…
-
0
votes1
answer1040
viewsQ: Open iframe by clicking and downloading when you close it
I am trying to implement on a portal with revenues, expenses, etc. I am using iframes to bring the information from the server. It works well, until I realized that if I load all the iframes all at…
-
0
votes1
answer55
viewsA: Using Javascript for iframes list
Really I was being silly. I had to close with ;; for the next code: window.onload = function() { document.getElementById("id_Iframe").src="LINK_IFRAME";;…
-
0
votes1
answer55
viewsQ: Using Javascript for iframes list
I’m using iframes to a portal, I had to use it calling for id to solve a previous problem. The problem now is that I can’t create a list of iframes in javascript, I can only create a id with the…
-
0
votes1
answer603
viewsQ: Solution for modal not load iframe automatically
I’m using bootscrap 3.3.6 modals to open iframes. The problem that when I implemented everything on the site iframes carry before opening the modals. Needed help for only iframe loaded when modal is…
-
0
votes1
answer343
viewsQ: Modal loading iframe before opening
I am implementing in a portal several iframe links in the modals. Some arrive to have the first modal with several icons to enter the next modal with iframe (modal on modal). When I started to…