2
votes
1answer
48 views

CSS Background Position when using :target

Ok so I've done some looking around and couldn't find a good enough answer to this question. Basically what I'm trying to do is minimize my websites header when a button is clicked. Heres the CSS: ...
1
vote
3answers
63 views

How to animate multiple divs to specific target location?

I have some problems making a function to set positions to some divs with jQuery animate. I made a quiz with jQuery and want the right "answered" draggable divs with an numeric id to automatically go ...
0
votes
2answers
43 views

easy way to use getElementsByTagName to change form target?

I have a form in a PHP file that I want to include in various other files which will be in iframes in other pages. In some cases, the form target should be _top but in others _blank. So it seems to me ...
0
votes
1answer
55 views

Reload PHP page where <body> tag is set in seperate PHP include

I have a page built of several seperate PHP includes. One page writes the information and another writes the content of the page. The page with content has hyperlinks on it that are all set to open ...
0
votes
3answers
34 views

How to attr class

I have a piece of code which someone wrote for me like this: var $me = $('.me'), crazyNumber = 99999999, allOfYou = [ { elements: ...
1
vote
1answer
50 views

Target mobile phones

I want to target mobile devices using CSS media queries like this: @media (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (-webkit-min-device-pixel-ratio: 1.5), ...
-4
votes
1answer
547 views

Pop up in New Window with Javascript

I have the following line of code that I'm having trouble popping up in a new window because the target wants to only focus on the URL which isn't the valid content: <html><head> <meta ...
1
vote
2answers
149 views

javascript: Open an URL from an window.open page back in the original page

I'm opening a smaller web browser window from the "main" web page. The "child" window contains links like the following... <a ...
0
votes
1answer
174 views

event.target/srcElement not working 100% in Chrome and Opera

I'm trying to get the target/srcElement of an HTML "area" element for an image map. Here's what I have so far (pardon the data URI): <map name="dpad"> <area id="dpad"shape="rect" alt="" ...
3
votes
2answers
313 views

obtain reference to _blank target window on form submit

I have a form that is opening a new window on submit: <form id="form-id" target="_blank"> I want to access the newly created window via javascript, without manually generating a unique name ...
0
votes
2answers
124 views

JS target doesn't work ie 8

I have this code, where data is DWR object that contains rows from response servlet. img.onclick works using IE9 but I need that it works on IE8 too. Some idea? Thanks! function functionA(data){ ...
1
vote
5answers
155 views

Links that don't pass referrer

I want to create a list of links opening the targets in new tabs from my private page and I don't want the referring URL to be passed on. I tried the following method, but it didn't solve the problem: ...
1
vote
2answers
2k views

Javascript - Reload page after form submit with target=“_blank”

I'm trying to achive the following: On page A we have an access restricted Link to page B. The access restriction is handled on the server side in PHP. When a user clicks on this link to page B we ...
0
votes
1answer
52 views

Target property of object using array - Javascript

I'm having trouble with this one. //Targeting a property of an object using an array myArray = ["property0","property1","property2","property3"]; myObject = {}; myObject[myArray[0]] = "value0"; ...
0
votes
4answers
169 views

Passing an URL to an iFrame over two pages

Let's say i got a link on a homepage, and an iFrame on the following page. Now i need to make that link on the homepage to pass an URL to the iFrame on the following page (on click), so the iFrame ...
0
votes
1answer
148 views

Target css: Background image Javascript

Hello im trying to target a specific css background image here http://22twenty.com/This/ What i want is the white background to fade out once the text has slide up to give it a cool effect. I need ...
0
votes
0answers
126 views

zeroclipboard conflict with target blank

Using the zeroclipboard js to copy a a string of text to the users clipboard and it's working however it appears that their is conflict between the zeroclipboard code and the code I've added to ensure ...
0
votes
1answer
52 views

How to mimic selecting e.target when only a Jquery object is available?

Odd... I'm listening for an event like so: $(document).on('some_event', 'div:jqmData(role="page")', function(e){ console.log( e.target ) }) In my console, I'm getting "hardcoded" HTML, like ...
0
votes
0answers
383 views

Clicking Anchor Tag with Javascript changes target

I have a piece of code that receives the pdf from a Ajax request and displays it in a new tab. Because this needs to work on an iPad window.open will not work. instead I create a anchor tag where ...
0
votes
1answer
139 views

Open <a> in a new window. But standard is _blank

I have a Drupal website. I have a RSS feed with . Ahref links with target blank. But there is a bug in Drupal CMS. When i clicking on the links. Than the link open in the same window and a new window. ...
0
votes
4answers
92 views

Unable to target div with JS

I am trying to target a div nested within some php with js, but no matter what I do, I can't seem to target it. Here is the code for reference: php: echo "<li>"."<div ...
1
vote
2answers
464 views

dynamically changing target of a form

I am trying to display my login inside an iframe which loads in the middle of the start page with gray backgroud, however i have a problem dealing with the target of the iframe, things should work as ...
-1
votes
1answer
235 views

How to modify html tag using javascript to add a target _blank

I have the following link: x = <a href="https://t.co/LwlI7i81">https://t.co/LwlI7i81</a> how can I use javascript to modify the url, to add a target _blank? String.prototype.parseURL ...
1
vote
1answer
52 views

Opening a link within a certain DOM object

How can I open a link (any link) within a certain DOM object in the current page, that is, display the link target's content inside that very DOM element. I would like to do something that would be ...
0
votes
3answers
80 views

Can I do this without jQuery?

I use the following code on my site. I'm wondering if I need jQuery to do it or if standard javascript can handle the process. <script type='text/javascript'> //<![CDATA[ ...
1
vote
2answers
117 views

Javascript variable scope issue

I have a simple scoping issue that is eluding me. Here is a simpler version of the code but employs the same principle. function myFunction(){ $('.selector_1, .selector_2').click(function(e){ ...
1
vote
1answer
1k views

jQuery target different window/popup

I have jQuery open a popup: function idealPopUp(str){ var url = str; var windowName = "idealPopUp"; var windowSize = 'height=820,width=784,toolbar=no,scrollbars=yes'; ...
0
votes
1answer
647 views

passing a target to the js link() method

How do I pass a target, _blank, to the js link method? x = "my link to google" x.link("www.google.com") <a href="www.google.com">my link to google</a> if its not possible is there an ...
2
votes
3answers
407 views

Determine on onclick whether the clicked link is meant to open a new window or tab

Most modern browsers support the commands ctrl+click or command+click or similar to open links in a new tab or a new window. In an application, I want the link to get disabled on clicking. But only, ...
0
votes
1answer
655 views

“jquery-Target has no method .css()”

I'm trying to get the CSS background-color of a div-element I'm clicking on. Now I've tried this (don't think that it needs more code): ... var onColorClicked = function(color) { var $target ...
0
votes
1answer
183 views

JS to add TARGET to form

I need to insert target="_top" into a < form>. The form is being auto-generated, so I can't just code it in. Is there some jquery or js I could use to add a target to a form? The form's id is ...
0
votes
1answer
173 views

How do you pass the target element as an argument to an inline event handler?

Whew! First off, my apologies for the title, I don't speak English often. My question is, using an inline event registration, how can I pass the target element as an argument? Like this: <element ...
0
votes
1answer
436 views

How do I know which element was clicked?

I'm attempting the surprisingly difficult task of finding out which element was clicked. I have these functions from Head First AJAX: function getActivatedObject(e) { var obj; if (!e) { obj = ...
0
votes
0answers
396 views

Can't get target out of iframe!

I'm using a wrapper module in joomla which is essentially an iframe - the problem with doing it this way is I can't control what the target is for it. I've tried some javascript to change the target ...
0
votes
2answers
1k views

change target of form after submit

I've been working so much on this and making zero progress I'm about to freak out. Please help! Below is the code. I want the TARGET attribute of the form to change from target="frame1" to ...
1
vote
3answers
751 views

jQuery ul event target - can i find the li that actually is event target?

$("#slider ul").hover(function(){ //do something }); Is there a way to find out which child (li) was actually hovered on to make this function work? This is a long function that when originally ...
0
votes
1answer
172 views

How to get a reference to current DropTarget, upon drop failure with YUI 2.8.1 DragDrop?

I'm using the DragDrop component - its basically the 'grouped drop objects' example - but I cannot for the life of me obtain a reference to the DropTarget object at the time I dropped my drag ...
0
votes
2answers
682 views

jQuery current target in multiple selection

how can i retrieve which one of my selection is my "current" target? I would like to have different variables inside this function. $('#header a, #nav a').click(function (event) { // if is ...
1
vote
1answer
262 views

Submitting a form to a new window using JavaScript - with Strict DocType

Ok, so here's my code for submitting the form: document.forms['formid'].submit(); The Form Target attribute is deprecated for the DocType I'm using - ...
0
votes
2answers
130 views

what do i need to open this in a popup or new window?

i'm making a bookmarklet to my website, and for now i have: <a href="javascript:location.href='http://website.com/compartir_link.php?url='+encodeURIComponent(location.href)" >Save ...
0
votes
2answers
2k views

Target on click

Look this code: <div> <a href = "#"><span>Click me MAN !</span></a> </div> <script type = "text/javascript"> window.onload = function () { ...
1
vote
3answers
316 views

Do something on :target with javascript

I'm using the CSS3 :target pseudo selector to create in-page navigation without reloading the page. This works really well! But I have a problem, I need to reset the forms in a page when the page ...
46
votes
4answers
16k views

Is it alright use to target=_blank in HTML5?

I recall reading somewhere that in HTML5 it was no longer okay to use target="_blank" in HTML5, but I can't find it now. Is it alright to continue to use target="_blank"? I know it's generally ...
0
votes
1answer
897 views

Is there a way to force an “onclick” new window to open in a tab?

Related but dormant: Javascript to open URL within a new Tab and a number of others... I have a client who insists that a particular link needs to open in a new tab, rather than a window. It's being ...
0
votes
3answers
57 views

Find where a JS is initiated

I have a JS script which created a new Node and inserts it to the HTML page. I am handling DOM mutation events and can capture DOMNodeInserted event. Inside that function I want to find out the source ...
0
votes
1answer
827 views

Change name of iframes/frames dynamically

I'm trying to have a website that hosts different applications (also websites) in iframes. Note: only one application is active (displayed) at a time. My problem is that links that rely on targets are ...
1
vote
3answers
661 views

popup window in ie8

in my webpage i have a button , that let me download an excel file(generated by php code). This part is called after clicing the button. <script type="text/javascript"> ...
2
votes
4answers
5k views

change <a> target to “_blank” depending on href

I'm trying to sort through the links on my page and make some of them open into a new window, depending on their URL. This is the code I have. It doesn't seem to be working. Can you see why? ...
2
votes
4answers
436 views

Perform function on form submit

Hopefully this is a pretty simple question! I've got the code working in jQuery to listen for a specific form on a page to be submitted and perform an alert when it is.. I.e.: The form itself ...
1
vote
1answer
1k views

Using JQuery to get text of a div that's a child of a header to replace a different header

I'm trying to get the text contents of a .div('.child#') child of my event.target('h6.class'), and replace my other headers('h1.replacHeader#') using this script below... ...

1 2